:root {
    --primary-red: #ff3366;
    --dark-red: #8b0000;
    --accent-red: #ff6699;
    --gold: #ffd700;
}

*{ 
    margin:0; 
    padding:0; 
    box-sizing:border-box; 
    font-family:"Poppins", sans-serif;
    font-display: swap;
}

body{ 
    background: white; 
    color: white; 
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
header {
    background: white;
    color: #ffffff;
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    position: relative;
    overflow: visible;
    z-index: 1000;
    border-bottom: 0.5px solid #fac8d4;
}



.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: "font-family: cursive";
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 22px;
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: #ff3366;;
}
.logo img {
    height: 60px;        
    width: auto;
    object-fit: contain;
}


/* ==================== NAVIGATION ==================== */
nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    display: flex;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    border: none;
    padding: 0.65rem 1.3rem;
    color: #ff3366;;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
}



        .btn:hover, .btn.active {
            background: var(--primary-red);
            color: white;
        }

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
}

.burger div {
    width: 30px;
    height: 3px;
    border-radius: 3px;
    transition: all 0.4s ease;
    background: #ff3366;
}

/* Burger to X Animation */
.burger.active .line1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== HERO SECTION ==================== */
.hero {
   background-image: url('IMG-20240311-WA0227.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.2rem;
    color: white;
    animation: redglow 3s infinite alternate;
    margin-bottom: 1rem;
}




/* ==================== SECTIONS ==================== */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
}


.section h2 {
    color: #ff3366;
    margin-bottom: 1.5rem;
    font-size: 2.6rem;
    text-align: center;
    font-weight: 700;
    font-family: 'Dancing Script', cursive;
}

.section p {
    color: black;
    text-align: center;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ==================== GALLERY ==================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hearts span {
    color: #ff99aa;
    text-shadow: 0 0 10px #ff3366;
}

/* ==================== LOCATIONS ==================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 20px 0;
}

.location-btn {
    border: none;
    padding: 1rem;
    border-radius: 12px;
    color: black;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(148, 145, 145, 0.3);
}

.location-btn:hover {
     
            background: var(--primary-red);
            color: white;
        
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-container {
    position: fixed;
    right: 25px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    color: #fff;
    transition: 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp {
    background: #25D366;
}

.phone {
    background: #ff3366;
}

/* ==================== PROFESSIONAL FOOTER STYLES ==================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2c0a14) !important;
    color: #fff !important;
    padding: 50px 15px 30px !important;
    margin-top: 40px;
    border-top: 4px solid #ff3366;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: left;
}

.footer-col h3 {
    color: #ff3366;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-family: 'Dancing Script', cursive;
}

.footer-col h4 {
    color: #ffd700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ff3366;
    padding-left: 5px;
}

.footer-social {
    margin-top: 15px;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,51,102,0.3);
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #ff3366;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.4;
}

.disclaimer {
    margin-top: 6px;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 25px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-col {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 20px;
    }
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 35px 12px 20px;
    }
}
/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 992px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    
    
    .gallery { 
        grid-template-columns: repeat(1, 1fr); 
        gap: 1rem; 
    }
    
    .hero { height: 380px; }
    .hero h1 { font-size: 2.2rem;
            text-align: left;
 }
 .gallery-item img {
    width: 250px;
    height: 300px;
}
}


@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }
    .section h2{
        font-size: 25px;
    }
    .section p{
        font-size: 15px;
        text-align: justify;
    }
    .locations-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .location-btn{
        font-size: 10px;
    }
    
      
}