:root {
    --blue-ribbon: #A68DFF;
    --peach-petals: #FCE4D8;
    --bird-of-paradise: #FF6D40;
    --winter-leaves: #2C4332;
    --white-daisies: #FFFDF7;
    --cut-stems: #E9E781;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bird-of-paradise);
    color: var(--winter-leaves);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Caprasimo', cursive;
    font-weight: normal;
}

/* Navigation */
nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1400px;
    background-color: var(--white-daisies);
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0 auto;
}

nav.scrolled {
    top: 0.5rem;
    padding: 0.6rem 1.8rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem); /* Responsive font size */
    color: var(--winter-leaves) ;
    background: var(--bird-of-paradise);
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 0.3s ease;
    font-weight: 700;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
    max-width: 100%; /* Ensure it doesn't overflow container */
    padding-right: 0.5rem; /* Add some padding */
    
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--winter-leaves);
    font-weight: 300; /* Thin font weight */
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase; /* All caps */
    letter-spacing: 1px; /* Better spacing for all caps */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bird-of-paradise);
    transition: width 0.3s ease;
    
}

.nav-links a:hover {
    color: var(--bird-of-paradise);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0.5rem;
       border-radius: 50px;
}

.menu-btn .hamburger {
    width: 30px;
    height: 3px;
    background: var(--winter-leaves);
    position: relative;
    transition: all 0.3s ease;
}

.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    transition: all 0.3s ease;
}

.menu-btn .hamburger::before {
    top: -8px;
}

.menu-btn .hamburger::after {
    top: 8px;
}

.menu-btn.active .hamburger {
    background: transparent;
}

.menu-btn.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
    background: var(--bird-of-paradise);
}

.menu-btn.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--bird-of-paradise);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1.5rem;
        top: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 96vh;
        background: var(--white-daisies);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
           border-radius: 50px;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    
    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo {
        font-size: clamp(1.2rem, 5vw, 1.5rem); /* More aggressive scaling for mobile */
        max-width: 70vw; /* Allow more space before ellipsis */
    }
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    padding-top: 6rem; /* Adjusted for nav height */
    position: relative;
    overflow: hidden;
    background-color: var(--bird-of-paradise);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 3rem);
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    text-align: left;
    z-index: 2;
    max-width: 610px;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 5%;
    line-height: 100%;
    color: var(--white-daisies);
    animation: fadeInUp 1s ease;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white-daisies);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.collab-btn {
    background-color: var(--cut-stems);
    color: var(--bird-of-paradise);
    border: none;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 2rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.collab-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(243, 250, 166, 0.3);
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    order: 2; /* Default order for desktop */
}


.main-rectangle {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 2;
    background-color: var(--peach-petals); /* Fallback */
}

.main-rectangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-rectangle:hover img {
    transform: scale(1.05);
}
/* Fun Geometric Shapes System */
.geo-shape {
    position: absolute;
    opacity: 0.6;
    z-index: 1;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Floating Circles */
.geo-shape.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--peach-petals);
    top: -10%;
    left: 5%;
    animation-name: float;
}

.geo-shape.circle-2 {
    width: 120px;
    height: 120px;
    background-color: var(--blue-ribbon);
    bottom: 10%;
    right: -5%;
    animation-name: floatReverse;
}


/* Dynamic Squares */
.geo-shape.square {
    width: 70px;
    height: 70px;
    background-color: var(--white-daisies);
    transform: rotate(15deg);
    top: 40%;
    left: -5%;
    animation-name: floatRotate;
    animation-delay: 0.7s;
}

/* Abstract Lines */
.geo-shape.line {
    height: 20px;
    width: 100px;
    background-color: var(--cut-stems);
    top:17%;
    right: 0%;
    animation-name: floatLine;
}

/* Floating Plus Signs */
.geo-shape.plus {
    width: 40px;
    height: 40px;
    position: relative;
    top: 10%;
    right: 20%;
    animation-name: floatRotate;
}

.geo-shape.plus::before,
.geo-shape.plus::after {
    content: '';
    position: absolute;
    background-color: var(--blue-ribbon);
}

.geo-shape.plus::before {
    width: 100%;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.geo-shape.plus::after {
    width: 10px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes floatRotate {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-15px) rotate(30deg); }
}

@keyframes floatLine {
    0%, 100% { transform: rotate(-30deg) translateY(0); }
    50% { transform: rotate(-25deg) translateY(-15px); }
}

/* Mobile Layout (768px and below) */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        order: 2; /* Content comes after image on mobile */
    }
    
    .hero-image {
        order: 1; /* Image comes first on mobile */
        min-height: 300px;
        width: 100%;
        margin-top: 1rem;
     
    }

    #hero h1 {
    font-size: 4rem;
    margin-bottom: 5%;
    line-height: 100%;
    color: var(--white-daisies);
    animation: fadeInUp 1s ease;
    }

    #hero p {
        font-size: 16px;
        color: var(--white-daisies);
        animation: fadeInUp 1s ease 0.2s forwards;
        opacity: 0;
    }

    .collab-btn {
        background-color: var(--white-daisies);
        color: var(--bird-of-paradise);
        border: none;
        align-items: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 2rem;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-weight: bold;
        transition: transform 0.3s, box-shadow 0.3s;
        margin-top: -1rem;
        animation: fadeInUp 1s ease 0.6s forwards;
        opacity: 0;
    }

    .collab-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(255, 253, 247, 0.3);
    }


    
    .main-rectangle {
        height: 300px;
    }
    
    /* Adjust shape positions for mobile */
    .geo-shape.circle-1 {
        top: 5%;
        left: 5%;
    }
    
    .geo-shape.triangle-2 {
        bottom: 25%;
        left: 5%;
    }
    
    /* Hide some shapes on mobile */
    .geo-shape.diamond,
    .geo-shape.hexagon,
    .geo-shape.square-2 {
        display: none;
    }
}


/* About Section */

#about {
    padding: 6rem 0;
    background-color: var(--white-daisies);
    position: relative;
    overflow: hidden;
    margin-bottom: -100px;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--bird-of-paradise);
 
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}
.about-text-column {
    display: flex;
    flex-direction: column;
    order: 2; /* Default order for desktop (text on right) */
}
.about-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    order: 1; /* Default order for desktop (embed on left) */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.instagram-embed {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 1/1.3; /* Maintain Instagram's aspect ratio */
}
.instagram-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.about-text {
    padding: 0 1rem;
}
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}
.brands-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--winter-leaves);
    font-family: 'Caprasimo', cursive;
}

.brands-marquee-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 1rem 0;
}


.marquee-container {
    width: 100%;
    overflow: hidden;

}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 30s linear infinite;
    margin-bottom: 10px;
}


.brand-item {
    background-color: var(--cut-stems);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    color: var(--winter-leaves);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 1.1rem;
}
.brand-item:hover {
    transform: translateY(-5px);
    background-color: var(--bird-of-paradise);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 109, 64, 0.3);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .instagram-embed {
        max-width: 450px;
    }
    
    .about-content {
        gap: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {

    .about{
        width: 100%;
        margin: 0%;

    }
    .about-content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 2rem;

    }
    
    .about-text-column {
        order: 1; /* Text first on mobile */
    }
    
    .about-media {
        order: 2; /* Embed second on mobile */
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .instagram-embed {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    .brand-item {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .marquee-track {
        animation-duration: 20s;
    }
    
    .about-container {
        padding: 0 1rem;
    }
}


/* Specialty Tags Container */
.specialty-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    justify-items: center;
    align-items: center;
}

/* Specialty Tag Styling */
.specialty-tag {
    
    background: linear-gradient(135deg, var(--bird-of-paradise), #ff8a5b);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(255, 109, 64, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    max-width: 200px;
}

.specialty-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.specialty-tag:hover::before {
    left: 100%;
}

.specialty-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 109, 64, 0.4);
    background: linear-gradient(135deg, #ff8a5b, var(--bird-of-paradise));
}

.specialty-tag:nth-child(2) {
    background: linear-gradient(135deg, var(--winter-leaves), #8b7355);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.3);
}

.specialty-tag:nth-child(2):hover {
    background: linear-gradient(135deg, #8b7355, var(--winter-leaves));
    box-shadow: 0 12px 30px rgba(139, 115, 85, 0.4);
}


/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .instagram-embed {
        width: 95%;
        max-width: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .brands-title {
        font-size: 1.6rem;
    }

    .specialty-tag {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .specialty-tag {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        max-width: 150px;
    }


}


        /* Unique Work Section */
        #my-unique-work {
            padding: 0 2rem 5rem;
            background-color: var(--white-daisies);
            position: relative;
            overflow: hidden;
            margin-top: 0%;
        }

        /* Floating Background Elements */
        .floating-bg {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }
      /* Updated emoji-based floating elements */
        .floating-orange {
            width: 30px;
            height: 30px;
            position: relative;
            animation: float 5s ease-in-out infinite;
        }

        .floating-orange::before {
            content: '🍊';
            font-size: 30px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .floating-cherry {
            width: 28px;
            height: 28px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .floating-cherry::before {
            content: '🍒';
            font-size: 28px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .floating-icecream {
            width: 26px;
            height: 26px;
            position: relative;
            animation: float 7s ease-in-out infinite;
        }

        .floating-icecream::before {
            content: '🍌🍎';
            font-size: 26px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .floating-chocolate {
            width: 24px;
            height: 24px;
            position: absolute;
            animation: float 8s ease-in-out infinite;
        }

        .floating-chocolate::before {
            content: '🍒';
            font-size: 24px;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
            }
            75% {
                transform: translateY(-30px) rotate(270deg);
            }
        }

        /* Positioning for floating elements */
        .floating-bg:nth-child(1) { top: 92%; left: 90%; animation-delay: 0s; }
        .floating-bg:nth-child(2) { top: 92%; right: 60%; animation-delay: 1s; }
        .floating-bg:nth-child(3) { top: 92%; left: 70%; animation-delay: 2s; }
        .floating-bg:nth-child(4) { top: 92%; left: 100%; animation-delay: 0.5s; }
        .floating-bg:nth-child(5) { top: 92%; left: 8%; animation-delay: 1.5s; }
        .floating-bg:nth-child(6) { top: 92%; right: 15%; animation-delay: 2.5s; }
        .floating-bg:nth-child(7) { top: 92%; left: 20%; animation-delay: 3s; }
        .floating-bg:nth-child(8) { top: 92%; right: 8%; animation-delay: 0.8s; }
        .floating-bg:nth-child(9) { top: 92%; left: 50%; animation-delay: 1.8s; }
        .floating-bg:nth-child(10) { top: 92%; right: 50%; animation-delay: 2.8s; }
        .floating-bg:nth-child(11) { top: 55%; left: 60%; animation-delay: 3.5s; }
        .floating-bg:nth-child(12) { top: 80%; right: 36%; animation-delay: 4s; }
        .floating-bg:nth-child(13) { top: 92%; left: 80%; animation-delay: 4.5s; }
        .floating-bg:nth-child(14) { top: 92%; right: 70%; animation-delay: 5s; }
        .floating-bg:nth-child(15) { top: 80%; left: 90%; animation-delay: 5.5s; }
        .floating-bg:nth-child(16) { top: 92%; right: 90%; animation-delay: 6s; }

        .unique-work-container {
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .unique-section-title {
            font-size: 50px;
            color: var(--bird-of-paradise);
            line-height: 1;
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 3rem;
            margin-top: -220px;
        }

        .unique-reel-container {
            display: flex;
            gap: 3rem;
            overflow-x: auto;
            width: 100%;
            scroll-behavior: smooth;
            position: relative;
            -ms-overflow-style: none;
            scrollbar-width: none;
            z-index: 2;
            padding-top: 10%;
            margin-top: -110px;

        }

        .unique-reel-container::-webkit-scrollbar {
            display: none;
        }

        .unique-phone-mockup {
            position: relative;
            width: 260px;
            height: 550px;
            flex-shrink: 0;
            background: #000;
            border-radius: 40px;
            padding: 15px;
            transition: transform 0.3s ease;
            z-index: 2;
        }

        .unique-phone-mockup:hover {
            transform: translateY(-5px);
        }

        .unique-scroll-btn {
            position: absolute;
            top: 57%;
            transform: translateY(-70%);
            width: 50px;
            height: 50px;
            background-color: var(--blue-ribbon);
            color: var(--white-daisies);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .unique-scroll-btn:hover {
            background-color: var(--winter-leaves);
            transform: translateY(-70%) scale(1.1);
        }

        .unique-scroll-btn svg {
            width: 24px;
            height: 24px;
        }

        .unique-scroll-left {
            left: 0;
        }

        .unique-scroll-right {
            right: 0;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #f97171;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
        }

        .phone-screen video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 20px;
            background: #000;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            z-index: 10;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .unique-reel-container {
                scroll-snap-type: x mandatory;
                padding: 1rem 0;
                margin: 0 1rem;
            }
            
            .unique-phone-mockup {
                scroll-snap-align: center;
                margin: 0 1rem;
            }
            
            .unique-scroll-btn {
                width: 50px;
                height: 50px;
            }
            
            .unique-scroll-left {
                left: 10px;
            }
            
            .unique-scroll-right {
                right: 10px;
            }

            .unique-section-title {
                font-size: 42px;
                margin-bottom: 2rem;
            }

            /* Adjust floating elements for mobile */
            .floating-square {
                width: 25px;
                height: 25px;
            }

            .floating-circle {
                width: 20px;
                height: 20px;
            }

            .floating-cross {
                width: 18px;
                height: 18px;
            }

            .floating-flower {
                width: 20px;
                height: 20px;
            }

            .floating-flower::before {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .unique-section-title {
                font-size: 36px;
                margin-bottom: 1.5rem;
            }

            /* Smaller floating elements for very small screens */
            .floating-square {
                width: 20px;
                height: 20px;
            }

            .floating-circle {
                width: 18px;
                height: 18px;
            }

            .floating-cross {
                width: 16px;
                height: 16px;
            }

            .floating-flower {
                width: 18px;
                height: 18px;
            }

            .floating-flower::before {
                font-size: 18px;
            }
        }

       /* Contact Section */
        .contact-container {
            width: 100%;
            position: relative;
            
        }

        #contact {
            background-color: var(--white-daisies);
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100%;
            padding: 60px 40px;
        }

        #contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--blue-ribbon), var(--cut-stems), var(--bird-of-paradise), var(--blue-ribbon));
            background-size: 300% 100%;
            animation: gradientShift 3s ease infinite;
        }

        .contact-header {
            margin-bottom: 50px;
            position: relative;
        }

        .contact-title {
            margin-top: 6%;
            font-size: 4rem;
            font-weight: normal;
            color: var(--winter-leaves);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            text-shadow: 0 4px 8px rgba(44, 67, 50, 0.1);
        }

        .contact-title::after {
            content: '🤝';
            position: absolute;
            right: -60px;
            top: -15px;
            font-size: 3rem;
            animation: bounce 2s infinite;
            filter: drop-shadow(0 4px 8px rgba(44, 67, 50, 0.2));
        }

        .contact-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--winter-leaves);
            line-height: 1.6;
            font-weight: 400;
        }

        .price-note {
            font-size: 1.2rem;
            margin-top: 25px;
            color: var(--bird-of-paradise);
            font-weight: 700;
            position: relative;
        }

        .price-note::before {
            content: '💰';
            margin-right: 10px;
            font-size: 1.4rem;
        }

        .social-platforms {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            margin-top: 50px;
            position: relative;
            flex-wrap: wrap;
        }

        .social-platform {
            position: relative;
            padding: 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            display: block;
        }

        .social-platform:hover {
            transform: translateY(-10px);
        }

        .social-platform:hover .social-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .social-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 40px;
            color: var(--white-daisies);
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(44, 67, 50, 0.2);
        }

        .instagram-icon {
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
        }

        .tiktok-icon {
            background: linear-gradient(45deg, #25F4EE, #000000, #FE2C55);
        }

        .email-icon {
            background-color: var(--blue-ribbon);
        }

        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-15px); }
            60% { transform: translateY(-8px); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #contact {
                padding: 40px 20px;
                min-height: 100%;
            }
            
            .contact-title {
                font-size: 2.8rem;
            }
            
            .contact-title::after {
                right: -45px;
                font-size: 2rem;
            }
            
            .social-platforms {
                gap: 12px;
            }
            
            .social-platform {
                padding: 15px;
            }
            
            .social-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .contact-subtitle {
                font-size: 1.2rem;
            }
            
            .price-note {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            #contact {
                padding: 20px 10px;
                min-height: 100%;
            }
            
            .contact-title {
                font-size: 2.2rem;
            }
            
            .contact-title::after {
                right: -35px;
                font-size: 1.5rem;
            }
            
            .contact-subtitle {
                font-size: 1.1rem;
            }
            
            .social-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
                margin-bottom: 25px;
            }
            
            .contact-header {
                margin-bottom: 40px;
            }
            
            .social-platforms {
                gap: 10px;
            }
        }

        @media (max-width: 320px) {
            .contact-title {
                font-size: 1.8rem;
            }
            
            .contact-title::after {
                right: -30px;
                font-size: 1.2rem;
            }
            
            .contact-subtitle {
                font-size: 1rem;
            }
            
            .social-platform {
                padding: 10px;
            }
            
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .price-note {
                font-size: 1rem;
            }
        }

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--winter-leaves);
    color: var(--white-daisies);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .reel-container {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        font-size: 0.9rem;
    }

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


#giveaway-hosting {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--white-daisies) 0%, var(--peach-petals) 100%);
    position: relative;
    overflow: hidden;
}

#giveaway-hosting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(166, 141, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 109, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.giveaway-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.giveaway-header {
    text-align: center;
    margin-bottom: 60px;
}

.giveaway-title {
    font-size: 3.5rem;
    color: var(--winter-leaves);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.giveaway-title::after {
    content: '🎁';
    position: absolute;
    right: -40px;
    top: -10px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.giveaway-embeds {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.embed-container {
    width: 100%;
    max-width: 540px; /* Instagram embed default width */
    background: var(--white-daisies);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(44, 67, 50, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeIn 0.8s ease-out;
}

.embed-container:nth-child(1) {
    animation: slideInLeft 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.embed-container:nth-child(2) {
    animation: slideInRight 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.embed-container:nth-child(3) {
    animation: slideInLeft 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.embed-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 67, 50, 0.15);
    border-color: var(--blue-ribbon);
}

.embed-container iframe {
    width: 100%;
    height: 930px; /* Full Instagram reel height */
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.embed-container:hover iframe {
    transform: scale(1.02);
}

.embed-label {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--winter-leaves);
    font-weight: 600;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@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 fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1200px) {
    .giveaway-embeds {
        flex-wrap: nowrap;
    }
    .embed-container {
        max-width: 400px;
    }
    .embed-container iframe {
        height: 700px; /* Slightly reduced height for side-by-side view */
    }
}

@media (max-width: 768px) {
    .giveaway-title {
        font-size: 2.5rem;
    }
    
    .giveaway-title::after {
        right: -30px;
        font-size: 1.5rem;
    }
    
    .embed-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .embed-container iframe {
        height: 800px; /* Adjusted for smaller screens */
    }
}