/* --- LUXURY GLOBAL --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #FFFCF8;
    /* subtle warm off-white for luxury feel */
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #3A2318;
    /* Dark mahogany brown */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #F4EBE1;
    /* pale beige */
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* --- STICKY CONTACTS --- */
.sticky-contacts {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.sticky-contacts .contact-item {
    background-color: #A68A64;
    /* Sophisticated gold/beige */
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 2px;
    transition: background-color 0.3s;
}

.sticky-contacts .contact-item:hover {
    background-color: #3A2318;
}

/* --- HEADER --- */

#header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background-color: #3A2318;
    color: #E6D5C3;
    font-size: 13px;
    font-weight: 300;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-cn-items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.header-cn-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-cn-item i {
    color: #A68A64;
    font-size: 14px;
}

.header-socials {
    display: flex;
    gap: 15px;
}

.header-socials a i {
    font-size: 14px;
    transition: color 0.3s;
}

.header-socials a:hover i {
    color: #fff;
}

.main-nav-wrap {
    padding: 20px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 65px;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-menu {
    display: flex;
    gap: 30px;
}

.main-menu li a {
    font-size: 13px;
    font-weight: 500;
    color: #3A2318;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-menu li a:hover,
.main-menu li a.active {
    color: #A68A64;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: #3A2318;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-slide {
    width: 100%;
    height: 85vh;
    /* Larger hero */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark Tint Overlay */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 15, 12, 0.6);
    /* Rich dark brown tint */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #A68A64;
    color: #fff;
}

.btn-primary:hover {
    background-color: #8c7355;
}

.btn-secondary {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #3A2318;
}



/* --- FOOTER --- */
#footer {
    background-color: #111;
    color: #aaa;
    font-size: 14px;
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 4fr 4fr 2fr;
    gap: 50px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.info-col h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-style: italic;
    letter-spacing: 1px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-list li i {
    color: #A68A64;
    margin-top: 4px;
}

.contact-list li a:hover {
    color: #fff;
}

.footer-bottom {
    background-color: #0A0A0A;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
    border-top: 1px solid #222;
}



/* --- GLOBAL FORMS --- */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #333;
    border-radius: 2px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #A68A64;
}

textarea.form-control {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    font-size: 16px;
    padding: 18px;
    cursor: pointer;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .header-cn-items {
        justify-content: center;
        text-align: center;
        gap: 10px;
        /* Tighter spacing */
        padding: 5px 0;
        /* Thinner bar */
    }

    /* Mobile Menu Dropdown Styling */
    .nav-links .main-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        gap: 1px;
        width: 100%;
        background: #fff;
        padding: 20px 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    /* This class gets added by JavaScript when the button is clicked */
    .nav-links .main-menu.show {
        display: flex;
    }

    .main-menu li {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }



    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
        text-align: left;
    }

  
    
    .sticky-contacts .contact-item {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .sticky-contacts {
        top: auto;
        bottom: 24px;
        transform: none;
        z-index: 99;
    }
}