/* ========================================
   ROYAL TENT HOUSE - LUXURY DESIGN
   Color Scheme: Gold (#B8860B), Black (#1A1A1A), Cream (#F5F1E8)
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B8860B;
    --dark-gold: #9B7E0A;
    --black: #1A1A1A;
    --cream: #F5F1E8;
    --light-cream: #FAFAF8;
    --gray: #4A4A4A;
    --light-gray: #E8E8E8;
    --accent: #D4AF37;
    --white: #FFFFFF;
}

/* ========== GENERAL STYLES ========== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--light-cream);
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background-color: var(--white);
    color: var(--cream);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0.25rem 0;
    overflow: hidden;
}

.logo img {
    max-height: 60px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.25s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

nav a:hover {
    color: var(--gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(184, 134, 11, 0.3) 100%),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--cream);
    padding: 100px 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23D4AF37" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury)"/></svg>');
    animation: sparkle 3s linear infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 157, 0.15) 0%,
        rgba(255, 165, 2, 0.1) 25%,
        rgba(0, 206, 209, 0.1) 50%,
        rgba(255, 215, 0, 0.1) 75%,
        rgba(255, 107, 157, 0.15) 100%);
    background-size: 400% 400%;
    animation: heroGradientShift 15s ease infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-banner-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #FF6B9D, #FFA502, #00D4FF, #FFD700, #FF69B4, #00D4FF, #FFA502, #FF6B9D);
    background-size: 200% 100%;
    animation: bannerShift 4s linear infinite;
    z-index: 4;
}

.hero-banner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #00CED1, #FFD700, #FF69B4, #FFA502, #FF6B9D, #FFA502, #FFD700, #00CED1);
    background-size: 200% 100%;
    animation: bannerShift 4s linear infinite reverse;
    z-index: 4;
}

@keyframes bannerShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1.2s ease;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: slideInRight 1.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.btn {
    padding: 12px 30px;
    border: 2px solid var(--accent);
    background-color: transparent;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--accent);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.3);
}

/* ========== HOME PAGE HERO ========== */
.home-hero {
    position: relative;
    min-height: 85vh;
    height: auto;
    overflow: hidden;
    background: #1A1A1A;
}

.home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23FFD700" opacity="0.6"/><circle cx="5" cy="20" r="0.8" fill="%23FF6B9D" opacity="0.4"/><circle cx="25" cy="10" r="1" fill="%2300CED1" opacity="0.5"/></pattern></defs><rect width="100" height="100" fill="%231A1A1A"/><rect width="100" height="100" fill="url(%23sparkles)"/></svg>');
    animation: sparkle 4s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 157, 0.12) 0%,
        rgba(255, 165, 2, 0.08) 25%,
        rgba(0, 206, 209, 0.08) 50%,
        rgba(255, 215, 0, 0.08) 75%,
        rgba(255, 107, 157, 0.12) 100%);
    background-size: 400% 400%;
    animation: heroGradientShift 18s ease infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes sparkle {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    contain: paint;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    animation: fadeZoom 15s infinite ease-in-out;
    will-change: opacity, transform;
    transition: opacity 0.8s ease;
}

.slide:nth-child(1) { animation-delay: 0s; background-image: url('https://royaltenthouse.in/wp-content/uploads/2026/01/tentbnr.jpg'); }
.slide:nth-child(2) { animation-delay: 5s; background-image: url('https://royaltenthouse.in/wp-content/uploads/2026/03/wedding.jpg'); }
.slide:nth-child(3) { animation-delay: 10s; background-image: url('https://royaltenthouse.in/wp-content/uploads/2026/03/mehndi.jpg'); }

@keyframes fadeZoom {
    0%, 22% { opacity: 1; transform: scale(1.03); }
    28%, 100% { opacity: 0; transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .slide {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.home-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 920px;
    margin: 0 auto;
    padding: 18vh 24px 10vh;
    animation: contentFade 1.8s ease-out;
}

@keyframes contentFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-hero .hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
    line-height: 1.05;
    transition: none;
}

.home-hero .hero-content .subtitle {
    font-size: clamp(1rem, 2vw, 1.45rem);
    margin-bottom: 2rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.55);
    color: #F5F1E8;
    transition: none;
}

.home-hero .hero-buttons {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.home-hero .btn {
    padding: 14px 32px;
    border: 2px solid #D4AF37;
    background: rgba(255,255,255,0.08);
    color: #F5F1E8;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    min-width: 160px;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.home-hero .btn:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.95);
    color: #111;
}

.home-hero .btn-primary {
    background: #D4AF37;
    color: #111;
}

.home-hero .btn-primary:hover {
    background: #B8860B;
}

@media (max-width: 1024px) {
    .home-hero { min-height: 75vh; }
    .home-hero .hero-content { padding: 16vh 20px 8vh; }
}

@media (max-width: 768px) {
    .home-hero { min-height: 65vh; }
    .home-hero .hero-content { padding: 14vh 18px 6vh; }
    .home-hero .hero-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .home-hero .hero-content h1 { font-size: 2rem; }
    .home-hero .hero-content .subtitle { font-size: 1rem; }
    .home-hero .btn { width: 100%; max-width: 320px; }
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* ========== SECTIONS ========== */
section {
    padding: 60px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto 0;
}

/* ========== ABOUT SECTION ========== */
.about {
    background-color: var(--light-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--gray);
}

.about-image {
    background-image: url("../images/mandap.webp");
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.2);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 4rem;
}

/* ========== SERVICES SECTION ========== */
.services {
    background-color: var(--cream);
    color: var(--cream);
    padding: 60px 2rem;
    position: relative;
}

.services .section-title {
    color: var(--accent);
    margin-bottom: 3.5rem;
}

.services .section-title::after {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    /* background: linear-gradient(135deg, rgba(184, 134, 11, 0.12), rgba(184, 134, 11, 0.05)); */
   background:var(--white);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.service-image {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    opacity: 0.95;
}

.service-icon {
    font-size: 2.6rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    transition: all 0.4s ease;
    animation: floatIcon 3s ease-in-out infinite;
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.3s; }
.service-card:nth-child(3) .service-icon { animation-delay: 0.6s; }
.service-card:nth-child(4) .service-icon { animation-delay: 0.9s; }
.service-card:nth-child(5) .service-icon { animation-delay: 1.2s; }
.service-card:nth-child(6) .service-icon { animation-delay: 1.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.service-card:hover .service-icon {
    animation: none;
    transform: scale(1.3) rotate(-10deg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-18px) scale(1.03);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(184, 134, 11, 0.12));
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.5);
    border-color: var(--accent);
}

.service-card:hover::after {
    animation: none;
}

.service-card h3 {
    font-size: 1.45rem;
    color: var(--accent);
    margin: 1.2rem 0 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card h3 i {
    margin-right: 0.6rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover h3 {
    color: var(--gold);
}

.service-card:hover h3 i {
    transform: rotate(-10deg) scale(1.2);
}

.service-card p {
    color: var(--black);
    line-height: 1.75;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-card:hover p {
    color: var(--gold);
}

.service-price {
    color: var(--gold);
    font-weight: 700;
    margin-top: auto;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-card:hover .service-price {
    color: var(--accent);
}

/* ========== GALLERY SECTION ========== */
.gallery {
    background-color: var(--light-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--light-gray);
    min-height: 250px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.gallery-item:nth-child(odd) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(even) {
    animation-delay: 0.4s;
}

.gallery-item:hover {
    transform: translateY(-20px) rotate(2deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.4);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.4;
}

.gallery-item-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.9));
    color: var(--cream);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-text {
    transform: translateY(0);
}

.gallery-item-text p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideInUp 0.3s ease 0.2s;
    animation-fill-mode: both;
}

/* ========== BLOG SECTION ========== */
.blog {
    background-color: var(--black);
    color: var(--cream);
    padding: 60px 2rem;
    position: relative;
}

.blog::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    border: 3px solid var(--gold);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.blog .container {
    position: relative;
    z-index: 2;
}

.blog .section-title {
    color: var(--accent);
    position: relative;
    z-index: 3;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.blog .section-title::after {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    display: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(184, 134, 11, 0.03));
    border: 2px solid rgba(184, 134, 11, 0.4);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.5);
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.08));
}

.blog-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(156, 126, 10, 0.15));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.blog-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--gold);
}

.blog-card p {
    color: rgba(245, 241, 232, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.read-more {
    color: var(--gold);
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.blog-view-all-btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--black);
    color: var(--cream);
    padding: 3rem 2rem 1rem;
    border-top: 2px solid var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--cream);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    color: rgba(245, 241, 232, 0.7);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== GALLERY STYLES ========== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.gallery-modal.active { display: flex; }

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.gallery-modal-content img {
    width: 100%;
    height: auto;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #B8860B;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.gallery-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

.gallery-card-visual {
    position: relative;
    background: #111;
    min-height: 220px;
    aspect-ratio: 4 / 3;
}

.gallery-card-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-visual img {
    transform: scale(1.04);
}

.gallery-card-info {
    padding: 1.5rem;
}

.gallery-card-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #1A1A1A;
}

.gallery-card-info p {
    margin: 0;
    color: #666;
    line-height: 1.65;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 0.95rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    backdrop-filter: blur(8px);
}

.gallery-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D4AF37;
}

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.86);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    width: min(100%, 1000px);
    max-height: 98vh;
}

.gallery-lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.gallery-lightbox-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    color: #1A1A1A;
    font-size: 1.2rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.gallery-card-subtitle {
    margin-top: 0.5rem;
    color: #A29F9B;
    font-size: 0.95rem;
    line-height: 1.65;
}

.gallery-card-footer {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.gallery-card-footer span {
    color: #777;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .gallery-card { border-radius: 20px; }
    .gallery-card-visual { min-height: 200px; }
}

/* ========== ADMIN STYLES ========== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A1A 0%, #B8860B 100%);
}

.login-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.login-box h2 {
    text-align: center;
    color: #B8860B;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.login-box .form-group {
    margin-bottom: 1.5rem;
}

.login-box label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
    font-weight: 600;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border: 2px solid #B8860B;
    border-radius: 5px;
    font-size: 1rem;
}

.login-box input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.2);
}

.error-message {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #B8860B;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #9B7E0A;
    transform: translateY(-2px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sparkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.3; }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(184, 134, 11, 0.6);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    section {
        padding: 40px 1rem;
    }
}

/* ========== PARTY BANNERS & DECORATIONS ========== */
.party-banner {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFA502 25%, #00D4FF 50%, #FF6B9D 75%, #FFA502 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    border-radius: 15px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.party-banner::before,
.party-banner::after {
    content: '🎉';
    position: absolute;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.party-banner::before {
    left: 20px;
    animation-delay: 0s;
}

.party-banner::after {
    right: 20px;
    animation-delay: 1s;
}

.party-banner-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Confetti Decoration */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #FF6B9D, #FFA502, #00D4FF, #FFD700);
    animation: confettiFall 4s ease-in forwards;
    opacity: 0.8;
    border-radius: 50%;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(-100%) rotate(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg) scale(0);
    }
}

/* Ribbon Banner */
.ribbon-banner {
    position: relative;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF69B4, #00CED1);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
    overflow: hidden;
}

.ribbon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #FFD700 0px,
        #FFD700 10px,
        #FFA500 10px,
        #FFA500 20px,
        #FF69B4 20px,
        #FF69B4 30px,
        #00CED1 30px,
        #00CED1 40px
    );
    animation: slideRibbon 3s linear infinite;
}

@keyframes slideRibbon {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.ribbon-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        #00CED1 0px,
        #00CED1 10px,
        #FF69B4 10px,
        #FF69B4 20px,
        #FFA500 20px,
        #FFA500 30px,
        #FFD700 30px,
        #FFD700 40px
    );
    animation: slideRibbon 3s linear infinite reverse;
}

.ribbon-banner-content {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

/* Floating Balloons */
.balloon {
    position: absolute;
    width: 40px;
    height: 50px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, #FF6B9D, #FFB6C1);
    animation: floatBalloon 6s ease-in-out infinite;
    opacity: 0.9;
}

.balloon:nth-child(1) {
    left: 10%;
    background: linear-gradient(135deg, #FF69B4, #FFB6C1);
    animation-delay: 0s;
}

.balloon:nth-child(2) {
    left: 30%;
    background: linear-gradient(135deg, #00CED1, #87CEEB);
    animation-delay: 1s;
}

.balloon:nth-child(3) {
    left: 50%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation-delay: 2s;
}

.balloon:nth-child(4) {
    left: 70%;
    background: linear-gradient(135deg, #98FB98, #00FF00);
    animation-delay: 3s;
}

.balloon:nth-child(5) {
    left: 90%;
    background: linear-gradient(135deg, #DDA0DD, #FF69B4);
    animation-delay: 4s;
}

@keyframes floatBalloon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(-5deg);
    }
    50% {
        transform: translateY(-40px) rotate(5deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Party Streamer */
.party-streamer {
    position: relative;
    background: linear-gradient(90deg, 
        #FF6B9D 0%, #FF6B9D 20%, 
        #FFA502 20%, #FFA502 40%, 
        #00D4FF 40%, #00D4FF 60%, 
        #FFD700 60%, #FFD700 80%, 
        #FF69B4 80%, #FF69B4 100%);
    height: 6px;
    margin: 2rem 0;
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.party-streamer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 16px;
    background: repeating-linear-gradient(
        45deg,
        transparent 0px,
        transparent 10px,
        rgba(255, 107, 157, 0.3) 10px,
        rgba(255, 107, 157, 0.3) 20px
    );
}

/* Banner Container */
.banners-section {
    position: relative;
    padding: 2rem 0;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

.banner-title {
    color: #FF6B9D;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Party Stars Animation */
.party-star {
    display: inline-block;
    margin: 0 0.5rem;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.party-star:nth-child(1) {
    animation-delay: 0s;
    color: #FFD700;
}

.party-star:nth-child(2) {
    animation-delay: 0.3s;
    color: #FF69B4;
}

.party-star:nth-child(3) {
    animation-delay: 0.6s;
    color: #00CED1;
}

.party-star:nth-child(4) {
    animation-delay: 0.9s;
    color: #FFA500;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.3);
    }
}

/* Decorative Banner Box */
.decoration-banner {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(0, 206, 209, 0.1));
    border: 3px dashed #FF6B9D;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.decoration-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 157, 0.05) 10px,
        rgba(255, 107, 157, 0.05) 20px
    );
    animation: backgroundShift 20s linear infinite;
}

@keyframes backgroundShift {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

.decoration-banner-content {
    position: relative;
    z-index: 2;
}

/* Party Text Effect */
.party-text {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(90deg, #FF6B9D, #FFA502, #00D4FF, #FFD700, #FF69B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 107, 157, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.8));
    }
}

/* Responsive Party Banners */
@media (max-width: 768px) {
    .party-banner {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .party-banner::before,
    .party-banner::after {
        font-size: 1.8rem;
    }

    .ribbon-banner {
        padding: 1.5rem;
    }

    .banner-title {
        font-size: 1.4rem;
    }

    .party-text {
        font-size: 1.2rem;
    }

    .blog {
        padding: 40px 1rem;
    }

    .blog::before {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        border-radius: 12px;
    }

    .blog-image {
        height: 180px;
    }

    .blog .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        min-height: 280px;
        padding: 1.5rem 1.2rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin: 0.8rem 0 0.6rem 0;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-price {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 260px;
        padding: 1.2rem 1rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin: 0.6rem 0 0.5rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog .section-title {
        font-size: 1.5rem;
    }
}
