* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Baskerville', 'Baskerville Old Face', 'Goudy Old Style', Garamond, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    position: relative;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 7, 111, 0.3) 0%, rgba(2, 7, 111, 0.3) 65%, rgba(2, 7, 111, 1) 90%, rgba(2, 7, 111, 1) 100%);
    z-index: 0;
    pointer-events: none;
}

.landing-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.logo {
    margin-bottom: 2rem;
}

.logo img {
    height: auto;
    max-width: 400px;
    width: 100%;
    display: block;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-message {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 4px;
    font-family: 'Baskerville', 'Baskerville Old Face', 'Goudy Old Style', Garamond, 'Times New Roman', serif;
}

.form-message.success {
    color: #ed4c00;
}

.form-message.error {
    background-color: rgba(237, 76, 0, 0.2);
    color: #ed4c00;
    border: 1px solid rgba(237, 76, 0, 0.5);
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Baskerville', 'Baskerville Old Face', 'Goudy Old Style', Garamond, 'Times New Roman', serif;
    background-color: transparent;
    color: white;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #ed4c00;
}

.form-group textarea {
    resize: none;
}

.submit-button {
    width: 100%;
    padding: 12px 30px;
    background-color: #ed4c00;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Baskerville', 'Baskerville Old Face', 'Goudy Old Style', Garamond, 'Times New Roman', serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background-color: rgba(237, 76, 0, 0.9);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.locations {
    font-size: 1.7rem;
    color: white;
    margin-top: auto;
    padding-bottom: 1rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-page {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.7rem;
    }
    
    .logo img {
        max-width: 300px;
    }
    
    .locations {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-page {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .logo img {
        max-width: 250px;
    }
    
    .locations {
        font-size: 1.4rem;
    }
    
    .contact-form {
        gap: 0.75rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
        border: none;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        background-color: transparent;
    }
}
