/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.main-header {
    background: #000000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: #FFD700; /* Your Brand Yellow/Gold */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #FFD700; /* Yellow hover state */
}

/* Specific Style for Contact Button */
.nav-cta {
    background: #FFD700;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.nav-cta:hover {
    background: #fff;
    color: #000 !important;
}

/* Responsive Burger Menu */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
}

@media screen and (max-width: 1024px) {
    .nav-links {
        display: none; /* We will add a JS toggle for mobile later */
    }
    .burger {
        display: block;
    }
}
/* Mobile Navigation styles */
@media screen and (max-width: 1024px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: #111;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 100px;
        z-index: 9;
    }
    
    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        z-index: 10;
    }
}

/* Logo Sizing */
.nav-logo {
    height: 50px; /* Adjust to fit your navbar height */
    width: auto;
}
/* Mobile Navigation styles */
@media screen and (max-width: 1024px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: #111;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 100px;
        z-index: 9;
    }
    
    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
        z-index: 10;
    }
}

/* Logo Sizing */
.nav-logo {
    height: 50px; /* Adjust to fit your navbar height */
    width: auto;
}
/* --- Footer Styling --- */
.main-footer {
    background-color: #0a0a0a;
    padding: 80px 0 40px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.brand-info p {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links a:hover {
    border-color: #d4a74a; /* Brand Yellow */
    color: #d4a74a;
}

.footer-heading {
    color: #d4a74a; /* Brand Yellow */
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666;
    font-size: 13px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .brand-info p {
        margin: 0 auto 25px;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
        gap: 15px;
    }
}