/* CSS Variables for Brown-Black Monochrome Theme */
:root {
    --primary-color: #382415;
    --secondary-color: #5f453c;
    --accent-color: #715a49;
    --dark-brown: #3E2723;
    --light-brown: #EFEBE9;
    --black: #1C1C1C;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #9E9E9E;
    --gray-dark: #424242;
    --shadow: rgba(139, 69, 19, 0.1);
    --shadow-dark: rgba(28, 28, 28, 0.2);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Floating Background Elements */
.floating-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: transparent;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-element::before {
    content: '🐾';
    font-size: 60px;
    display: block;
}


.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.float-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--accent-color) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo h2 {
    color: var(--light-brown);
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--light-brown);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.7)), url('./images/0.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210, 105, 30, 0.1);
    animation: backgroundMove 30s linear infinite;
}

.avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 25px var(--shadow-dark);
}


@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.avatar-emoji {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

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

.glitch-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    animation: slideInUp 1s ease-out;
}

.typewriter {
    margin-bottom: 2rem;
}

.typewriter p {
    font-size: 1.2rem;
    color: var(--gray-dark);
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}


/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.magnetic {
    transition: var(--transition);
}

.magnetic:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    scroll-margin-top: 80px; /* Add this line for proper scroll positioning */
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem; /* Add padding for better spacing */
}

.image-placeholder {
    width: 100%; /* Increased from 80vw to 90vw for better mobile usage */
    height: 100%;
    max-width: 100%; /* Increased from 350px for larger screens */
    max-height: 100%;
    background: var(--light-brown);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-dark);
    margin: 0 auto;
    aspect-ratio: 1; /* Ensures perfect square regardless of content */
}

.about-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    transition: var(--transition);
    display: block; /* Prevents any inline spacing issues */
}

.about-profile-image:hover {
    transform: scale(1.05);
}


/* Brand Marquee Section */
.brands-marquee-section {
    background: var(--gray-light);
    padding: 3rem 0;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 3rem;
}

.brand-logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px var(--shadow);
    white-space: nowrap;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-dark);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sample Reels Section */
.reels-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-mockups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    justify-items: center;
}

/* Instagram Embed Styles */
.instagram-embed {
    position: relative;
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
    height: 600px; /* Fixed height for uniform appearance */
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
}

.instagram-embed .instagram-media {
    height: 100% !important;
    max-height: none !important;
    min-height: none !important;
    overflow-y: auto !important;
    border-radius: var(--border-radius) !important;
}

.instagram-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

/* Legacy phone mockup styles (keeping for backward compatibility) */
.phone-mockup {
    position: relative;
    transition: var(--transition);
}

.reels-cta {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: var(--border-radius);
}

.reels-cta p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .mobile-mockups {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .instagram-embed {
        max-width: 100%;
        height: 500px; /* Slightly smaller height for mobile */
    }
    
    .phone-frame {
        width: 240px;
        height: 420px;
        padding: 15px;
    }
    
    .marquee-content {
        gap: 2rem;
    }
    
    .brand-logo {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-embed {
        height: 450px; /* Even smaller for very small screens */
    }
}




/* Responsive Design */
@media (max-width: 768px) {
    .mobile-mockups {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .phone-frame {
        width: 240px;
        height: 420px;
        padding: 15px;
    }
    
    .marquee-content {
        gap: 2rem;
    }
    
    .brand-logo {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-brown);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

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

.service-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Shop Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.merch-item {
    background: var(--light-brown) ;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--light-brown);
}

.merch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.merch-image {
    height: 200px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.merch-item h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.merch-price {
    padding: 0 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.merch-btn {
    display: block;
    margin: 1rem;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.merch-btn:hover {
    background: var(--secondary-color);
}

.merch-cta {
    text-align: center;
    padding: 3rem;
    background: var(--light-brown);
    border-radius: var(--border-radius);
}

.merch-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Affiliates Section */
.affiliate-scroll {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    padding: 1rem 0;
    margin-bottom: 3rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.affiliate-scroll::-webkit-scrollbar {
    height: 8px;
}

.affiliate-scroll::-webkit-scrollbar-track {
    background: var(--light-brown);
    border-radius: 4px;
}

.affiliate-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.affiliate-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.affiliate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.affiliate-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-brown);
    min-width: 280px;
    flex-shrink: 0;
}



.affiliate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.affiliate-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

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

.affiliate-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.affiliate-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.affiliate-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.affiliate-cta {
    text-align: center;
    padding: 3rem;
    background: var(--light-brown);
    border-radius: var(--border-radius);
}

.affiliate-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h3,
.contact-methods h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-brown);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.testimonial {
    text-align: center;
    padding: 2rem;
    background: var(--light-brown);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.testimonial blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-color);
    color: var(--gray-light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@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);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        color: var(--black);
        border-radius: var(--border-radius);
    }


    .hero {
        min-height: 100vh;
        display: flex;
        align-items: c;
        justify-content: center;
        position: relative;
        background: linear-gradient(rgba(255, 255, 255, 0.7)), url('./images/0.png');
        background-size: cover;
        background-position: left;
        background-attachment: fixed;
        overflow: hidden;
        margin-top: 10%;
        padding-top: 80px;
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

   .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text{
        margin-left: 10%;
        margin-right: 10%;
    }
    

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

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
        scroll-margin-top: 70px;
    }

    .image-placeholder {
        width: 70%;
        height: 70%;
        margin: 1rem auto;
    }
    
    .about-image {
        padding: 0.5rem;
    }

}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 2rem;
    }

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

    .hero-buttons {
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid,
    .merch-grid,
    .affiliate-grid {
        grid-template-columns: 1fr;
    }

    
    .image-placeholder {
        width: min(250px, 90vw); /* Optimized for small phones */
        height: min(250px, 90vw);
        margin: 1rem auto;
    }
    
    .about-image {
        padding: 0.5rem;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --shadow: rgba(0, 0, 0, 0.3);
        --shadow-dark: rgba(0, 0, 0, 0.5);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .floating-bg,
    .scroll-progress,
    .back-to-top,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        opacity: 1;
        transform: none;
    }
}


/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 3rem;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 1rem;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px var(--shadow);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
}

/* Update existing mobile-mockups for carousel */
.mobile-mockups {
    display: none; /* Hide the old grid layout */
}

/* Instagram Embed Styles - Updated for carousel */
.instagram-embed {
    position: relative;
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
    height: 600px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
    margin: 0 auto;
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .carousel-slide {
        max-width: 320px;
    }
    
    .instagram-embed {
        height: 500px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        max-width: 280px;
    }
    
    .instagram-embed {
        height: 450px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn-prev {
        left: -17px;
    }
    
    .carousel-btn-next {
        right: -17px;
    }
    
    .carousel-track {
        gap: 1rem;
        padding: 0.5rem;
    }
}