﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #0c1d31;
    --accent-gold: #c5a059;
    --light-gray: #f4f7f6;
    --text-dark: #333;
}

body {
    font-family: 'Open Sans',sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}
.serif {
    font-family: 'Playfair Display', serif;
}

/* Dropdown Logic */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 42, 108, 0.9), rgba(26, 42, 108, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
        color: var(--accent-gold);
        font-weight: bold;
    }

/* Contact Container */
.contact-wrapper {
    max-width: 1100px;
    margin: 0px auto 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    padding: 20px;
}

/* Info Sidebar */
.contact-info {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

    .info-item i {
        font-size: 1.5rem;
        color: var(--accent-gold);
        margin-right: 15px;
    }

/* Form Styling */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid var(--accent-gold);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 1rem;
    }

.btn-submit {
    background-color: var(--accent-gold);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s ease;
}

    .btn-submit:hover {
        background-color: #a38445;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}


.hero-bg {
    background: linear-gradient(rgb(0 33 71 / 41%), rgba(213, 179, 200, 0.6)), url(../images/Contact.jpeg?auto=format&fit=crop&w=1920&q=80);
    background-size: cover;
    background-position: center;
}