/* ========================================
   Happy Memories Rentals - Main Stylesheet
   ======================================== */

/* Root Variables - Easy to customize colors */
:root {
    --primary-color: #E2B13C;
    --secondary-color: #F2D16B;
    --accent-color: #C89B2B;
    --gold-gradient: linear-gradient(135deg, #F4D366 0%, #E6B43D 50%, #D1A631 100%);
    --gold-gradient-light: linear-gradient(135deg, #F5D547 0%, #F2D16B 50%, #E2B13C 100%);
    --gold-gradient-dark: linear-gradient(135deg, #E6B43D 0%, #D1A631 50%, #B8922A 100%);
    --purple-accent: #F6DDE3;
    --dark-text: #4F4F4F;
    --light-text: #6B6B6B;
    --background-light: #F9E8EC;
    --white: #FAFAF8;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Gradient Background - Used across sections */
.gradient-bg {
    background: linear-gradient(135deg, 
        #FFF0F5 0%, 
        #FFE8F0 15%,
        #FFE0E8 30%,
        #FFD8E0 45%,
        #FFD0D8 60%,
        #FFC8D0 75%,
        #FFC0C8 90%,
        #FFB8C0 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========================================
   Navigation Bar
   ======================================== */
nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    overflow-x: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 8px rgba(226, 177, 60, 0.3);
    animation: subtleScale 0.8s ease-in-out;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Ensure BOOK NOW button maintains its styling */
.nav-menu a.btn-nav {
    color: var(--white) !important;
}

.nav-menu a.btn-nav:hover {
    color: var(--primary-color) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, 
        #FFF0F5 0%, 
        #FFE8F0 15%,
        #FFE0E8 30%,
        #FFD8E0 45%,
        #FFD0D8 60%,
        #FFC8D0 75%,
        #FFC0C8 90%,
        #FFB8C0 100%);
    color: var(--dark-text);
    text-align: center;
    padding: 2rem 2rem;
    margin-bottom: 3rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 192, 203, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 1s ease-out;
}

.trasn-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin: 0 auto 0.2rem;
    display: block;
    background: transparent;
    animation: popUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: saturate(1.4) brightness(1.05);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popUp {
    0% {
        opacity: 0;
        transform: scale(0) translateY(30px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(216, 183, 102, 0.4), 0 0 40px rgba(216, 183, 102, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(216, 183, 102, 0.8), 0 0 60px rgba(216, 183, 102, 0.4);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-50px);
    }
    50% {
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-10px) rotate(-5deg);
    }
    30% {
        transform: translateX(10px) rotate(3deg);
    }
    45% {
        transform: translateX(-5px) rotate(-2deg);
    }
    60% {
        transform: translateX(5px) rotate(1deg);
    }
    75% {
        transform: translateX(-2px) rotate(-0.5deg);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 3px 3px 12px rgba(226, 177, 60, 0.5), 3px 3px 6px rgba(0, 0, 0, 0.3);
    }
}

@keyframes subtleScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes underlineSlide {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes importantPulse {
    0%, 100% {
        text-shadow: 0 0 0 rgba(229, 57, 53, 0.4);
    }
    50% {
        text-shadow: 0 0 8px rgba(229, 57, 53, 0.6);
    }
}

@keyframes subtleHighlight {
    0%, 100% {
        background-color: transparent;
    }
    50% {
        background-color: rgba(226, 177, 60, 0.1);
    }
}

.hero-animate {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Scroll-triggered animation states */
.hero-animate.scroll-trigger {
    animation: none;
}

.hero-animate.scroll-trigger.in-view {
    animation-play-state: running;
}

.hero .tagline.hero-animate {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards paused;
}

.hero .tagline.hero-animate.in-view {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
}

.hero .hero-description.hero-animate {
    animation: slideInLeft 0.7s ease-out 0.6s forwards paused;
}

.hero .hero-description.hero-animate.in-view {
    animation: slideInLeft 0.7s ease-out 0.6s forwards;
}

.hero .btn.hero-animate {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.9s forwards paused,
                wobble 0.6s ease-in-out 1.7s paused;
}

.hero .btn.hero-animate.in-view {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.9s forwards,
                wobble 0.6s ease-in-out 1.7s;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: -1px;
    transition: all 0.3s ease;
    cursor: default;
    color: #000000;
}

.hero h1:hover {
    animation: titleGlow 1.5s ease-in-out;
    transform: scale(1.03);
    color: #000000;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.hero p:hover {
    transform: scale(1.02);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .tagline {
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: default;
}

.hero .tagline:hover {
    animation: subtleScale 1s ease-in-out;
    color: var(--primary-color);
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background-color: var(--white);
    padding: 1.5rem 2rem 2rem;
    margin-bottom: 1rem;
    width: 100%;
    overflow-x: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: linear-gradient(135deg, rgba(246, 221, 227, 0.9), rgba(249, 232, 236, 0.9));
    border-radius: 15px;
    padding: 1.8rem 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(246, 221, 227, 0.25);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(246, 221, 227, 0.35);
    animation: subtleHighlight 1.5s ease-in-out infinite;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    animation: statFloat 3s ease-in-out infinite;
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
    animation: subtleScale 0.6s ease-in-out;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.star-display {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.8rem;
    font-size: 1.5rem;
}

.animated-star {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.animated-star.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   Team Section
   ======================================== */
.team-section {
    background: linear-gradient(135deg, 
        #FFE8F0 0%, 
        #FFDCE8 15%,
        #FFD0E0 30%,
        #FFC4D8 45%,
        #FFB8D0 60%,
        #FFACC8 75%,
        #FFA0C0 90%,
        #FF94B8 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.team-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

/* Party decoration elements */
.party-decor {
    position: absolute;
    font-size: 3.5rem;
    opacity: 0.28;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-40px);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
}

/* Balloon positioning and animations */
.balloon-1 {
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.balloon-2 {
    top: 60%;
    right: 8%;
    animation: float-slow 10s ease-in-out infinite;
}

.balloon-3 {
    bottom: 10%;
    right: 25%;
    animation: float 7s ease-in-out infinite;
}

/* String/sparkle positioning */
.string-1 {
    top: 25%;
    right: 5%;
    font-size: 2.8rem;
    animation: drift 8s ease-in-out infinite;
}

.string-2 {
    bottom: 35%;
    left: 3%;
    font-size: 2.5rem;
    animation: drift 9s ease-in-out infinite reverse;
}

/* Confetti positioning */
.confetti-1 {
    top: 70%;
    left: 15%;
    font-size: 3.2rem;
    animation: float 9s ease-in-out infinite;
}

.confetti-2 {
    bottom: 20%;
    left: 80%;
    font-size: 3rem;
    animation: float-slow 11s ease-in-out infinite;
}

/* Star positioning */
.star-1 {
    top: 45%;
    left: 92%;
    font-size: 2.8rem;
    animation: float 7s ease-in-out infinite;
}

.star-2 {
    bottom: 55%;
    right: 3%;
    font-size: 2.5rem;
    animation: float-slow 8s ease-in-out infinite;
}

.balloon-4 {
    top: 75%;
    right: 60%;
    animation: float 9s ease-in-out infinite;
}

.confetti-3 {
    top: 30%;
    left: 50%;
    font-size: 3.3rem;
    animation: drift 10s ease-in-out infinite reverse;
}

.team-image-box {
    max-width: 700px;
    margin: 2rem auto 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.team-image-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-image-placeholder {
    background: var(--white);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 3px dashed var(--primary-color);
}

.team-image-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.team-image-placeholder p {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 500;
}

.team-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.team-member.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.3);
    border-color: var(--primary-color);
}

.team-member:hover h3 {
    animation: titleGlow 1s ease-in-out;
}

.team-member h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-role {
    font-size: 1.05rem;
    color: var(--light-text);
    font-weight: 500;
    line-height: 1.5;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.8rem 5rem;
    font-size: 1.7rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: var(--gold-gradient-light);
    color: var(--dark-text);
}

.btn-secondary {
    background: var(--gold-gradient);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gold-gradient-dark);
    transform: translateY(-3px);
}

.btn-nav {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--white);
    color: var(--primary-color);
}

/* ========================================
   Cards and Content Sections
   ======================================== */
.section {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 3.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.section-title:hover {
    animation: subtleScale 1s ease-in-out;
    text-shadow: 0 4px 8px rgba(226, 177, 60, 0.2);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   Service Cards (What We Offer)
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.25);
    border-color: var(--primary-color);
}

.service-card:hover .service-content h3 {
    animation: titleGlow 1s ease-in-out;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-content p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   Feature Boxes (Why Choose Us)
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box:hover h3 {
    animation: titleGlow 1s ease-in-out;
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-box p {
    font-size: 1rem;
    color: var(--light-text);
    font-weight: 500;
}

/* ========================================
   Rental Items
   ======================================== */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.rental-item {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 650px;
    position: relative;
}

.rental-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(246, 221, 227, 0.25);
    border-color: var(--primary-color);
}

.rental-image {
    width: 100%;
    height: 250px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-image::after {
    content: 'Image placeholder';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.rental-image:has(img)::after {
    content: none;
}

.rental-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.rental-info h3 {
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rental-item:hover .rental-info h3 {
    color: var(--primary-color);
    animation: subtleScale 0.6s ease-in-out;
}

.rental-description {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    flex-shrink: 0;
    min-height: 3rem;
}

.rental-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0 0.75rem 0;
    display: block;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rental-item:hover .rental-price {
    animation: subtleScale 0.8s ease-in-out;
    text-shadow: 0 2px 8px rgba(226, 177, 60, 0.3);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: -1.4rem;
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 2.3rem;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls > div {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    width: 40px;
    height: 48px;
    background: var(--gold-gradient);
    color: white;
    border: none;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.qty-btn:hover {
    background: var(--gold-gradient-dark);
    transform: scale(1.05);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-btn.minus {
    border-right: 1px solid var(--border-color);
}

.qty-btn.plus {
    border-left: 1px solid var(--border-color);
}

.quantity-selector input {
    width: 70px;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
    cursor: text;
}

/* Make spinner arrows hidden */
.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
    opacity: 0;
    height: 0;
    width: 0;
}

/* Firefox number input arrows */
.quantity-selector input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-selector input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(246, 221, 227, 0.3);
}

/* Max Quantity Message */
.max-qty-message {
    background: linear-gradient(135deg, #FFE8F0 0%, #FFF0F5 100%) !important;
    border: 1px solid #FF69B4 !important;
    color: #D81B60 !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 0.3rem 0.6rem !important;
    border-radius: 6px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    position: absolute !important;
    bottom: -0.35rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    z-index: 10 !important;
    pointer-events: none !important;
}

.rental-info {
    display: flex;
    flex-direction: column;
}

.price-and-max-wrapper {
    display: block;
    position: relative;
    height: auto;
}

/* ========================================
   Selection Screen
   ======================================== */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.selection-card {
    background: linear-gradient(135deg, #FAFAF8 0%, #F9E8EC 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.selection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(246, 221, 227, 0.3);
    border-color: var(--secondary-color);
}

.selection-card:hover h3 {
    animation: titleGlow 1s ease-in-out;
    color: var(--primary-color);
}

.selection-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.selection-card:hover .selection-icon {
    transform: scale(1.15) rotate(-5deg);
}

.selection-card h3 {
    color: var(--dark-text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.selection-card p {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.selection-card .btn {
    margin-top: 1rem;
}

/* ========================================
   Back Button
   ======================================== */
.btn-back {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: inline-block;
}

.btn-back:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
}

/* ========================================
   Party Packages
   ======================================== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(246, 221, 227, 0.25);
}

.package-card:hover .package-header h3 {
    animation: subtleScale 0.8s ease-in-out;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.package-header {
    padding: 2rem;
    text-align: center;
    color: white;
    font-size: 1.8rem;
}

.package-header h3 {
    margin: 0;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.superhero-theme {
    background: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
}

.princess-theme {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
}

.package-body {
    padding: 2rem;
}

.package-description {
    color: var(--light-text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.package-includes {
    background: linear-gradient(135deg, 
        #FFE8F0 0%, 
        #FFDCE8 15%,
        #FFD0E0 30%,
        #FFC4D8 45%,
        #FFB8D0 60%,
        #FFACC8 75%,
        #FFA0C0 90%,
        #FF94B8 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.package-includes h4 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-includes li {
    color: var(--light-text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(246, 221, 227, 0.3), rgba(249, 232, 236, 0.3));
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-label {
    color: var(--dark-text);
    font-size: 1.1rem;
    font-weight: 600;
}

.price-amount {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.package-card:hover .price-amount {
    animation: subtleScale 0.8s ease-in-out;
    text-shadow: 0 2px 8px rgba(226, 177, 60, 0.3);
}

.package-selector {
    text-align: center;
}

.package-selector label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.package-selector label:hover {
    background: var(--primary-color);
    color: var(--white);
}

.package-selector input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ========================================
   Forms
   ======================================== */
.form-container {
    max-width: 600px;
    margin: 3rem auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.form-group:hover label {
    color: var(--primary-color);
    transform: translateX(2px);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background-color: #e8f5e9;
    color: var(--success-color);
    border: 2px solid var(--success-color);
}

.form-message.error {
    background-color: #fee2e2;
    color: var(--error-color);
    border: 2px solid var(--error-color);
}

/* ========================================
   Gallery
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    font-weight: 500;
}

/* Placeholder for gallery images */
.gallery-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background-color: var(--dark-text);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--white);
    font-size: 2rem;
    transition: transform 0.3s, opacity 0.3s;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.social-links a .social-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: transform 0.3s;
}

.social-links a:hover .social-icon {
    transform: scale(1.15);
}

footer p {
    margin-top: 2rem;
    color: #aaa;
}

/* ========================================
   Contact Info
   ======================================== */
.contact-info {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info h3:hover {
    animation: titleGlow 1.2s ease-in-out;
    transform: scale(1.03);
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.4rem;
    line-height: 1.8;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    transform: translateX(5px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-decoration: underline;
    animation: subtleScale 0.5s ease-in-out;
}

/* ========================================
   About Section
   ======================================== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.8;
}

.about-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.about-content h2:hover {
    animation: titleGlow 1s ease-in-out;
    transform: translateX(5px);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.about-content p:hover {
    transform: translateX(3px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablets */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero {
        min-height: 45vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-image-placeholder {
        padding: 3rem 1.5rem;
    }

    .team-member {
        padding: 2rem 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 3.5rem;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .feature-icon {
        font-size: 3.5rem;
    }

    .card-grid,
    .rental-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.25rem 1rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 40vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .team-image-placeholder {
        padding: 2.5rem 1rem;
    }

    .team-image-placeholder span {
        font-size: 3rem;
    }

    .team-image-placeholder p {
        font-size: 1rem;
    }

    .team-member h3 {
        font-size: 1.4rem;
    }

    .team-role {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .contact-info {
        padding: 1.25rem;
    }

    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        margin: 0.7rem 0;
    }

    .service-content p {
        font-size: 0.95rem;
    }

    .contact-info {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .contact-info h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 1rem;
        margin: 0.8rem 0;
        line-height: 1.6;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
    display: none;
}
