/* nav.css */
/* Header styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Top header */
.top-header {
    padding: 15px 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

/* Contact info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-info a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FF1493; /* Brighter pink on hover */
}

.contact-info .instagram {
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    height: 100%;
}

.contact-button {
    position: relative;
    background-color: transparent;
    color: white;
    padding: 10px 24px;
    border: 1px solid white;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 42px; /* Fixed height to match Instagram icon */
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: transform 0.3s ease;
    z-index: -1;
}

.contact-button:hover {
    color: #FF006C;
    border-color: #FF006C;
}

.contact-button:hover::before {
    transform: translateX(100%);
}

.contact-button .arrow {
    transition: transform 0.3s ease;
}

.contact-button:hover .arrow {
    transform: translateX(4px);
}

/* Ensure Instagram icon is vertically centered */
.instagram i {
    display: flex;
    align-items: center;
    height: 42px; /* Match button height */
}

/* Main Navigation */
.main-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 15px 0;
}

.nav-link {
    color: white;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF006C;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #FF1493;
}

.nav-link:hover::after {
    transform: scaleX(1);
    background-color: #FF1493;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .contact-info.desktop {
        display: none;
    }
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

/* Hide hamburger when menu is active */
.mobile-menu.active + .mobile-menu-toggle,
.site-header:has(.mobile-menu.active) .mobile-menu-toggle {
    visibility: hidden;
    opacity: 0;
}

.mobile-menu-close {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #FF1493;
}

.mobile-menu nav ul {
    margin-top: 60px;
}

.mobile-menu nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu nav ul li a {
    color: white;
    display: block;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-menu nav ul li a:hover {
    color: #FF1493;
}

.mobile-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.mobile-contact a {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.mobile-contact a:hover {
    color: #FF1493;
}





















/* Footer Styles */
.site-footer {
    background-color: black;
    color: white;
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Left Section - Brand */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FF006C;
}

/* Middle Section - Quick Links */
.footer-section h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #FF006C;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FF006C;
}

/* Right Section - Contact */
.footer-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}


.footer-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    width: 100%;
}

.contact-item div {
    text-align: left;
    flex: 1;
}

.contact-item i {
    color: #FF006C;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
    display: block;
}

.contact-item p:first-child {
    margin-top: 0;
}

.contact-item a:hover {
    color: #FF006C;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-section:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-logo {
        font-size: 1.5rem;
    }
}