/* Fun 3D Ice Cream Website Styles */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --purple-accent: #a8e6cf;
    --blue-accent: #88d8c0;
    --pink-accent: #ffc3d3;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9ff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
}

/* Floating Emojis Animation */
.floating-emojis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.emoji {
    position: absolute;
    font-size: 2rem;
    animation: float 15s infinite linear;
    animation-delay: var(--delay);
    opacity: 0.7;
}

.emoji:nth-child(1) { left: 10%; }
.emoji:nth-child(2) { left: 20%; }
.emoji:nth-child(3) { left: 40%; }
.emoji:nth-child(4) { left: 70%; }
.emoji:nth-child(5) { left: 90%; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--accent-color);
}

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

.nav-logo h1 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    font-family: 'Fredoka', cursive;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: inline-block;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-link:hover .logo-img {
    filter: brightness(1.1);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    /* PDF background image with stronger overlay for better text readability */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('images/banner-background.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M30 30c0-16.569 13.431-30 30-30v60c-16.569 0-30-13.431-30-30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: start;
    color: var(--white);
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-main-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 230, 109, 0.4);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', cursive;
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Add stronger shadow for better visibility on background images */
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.fun-text {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

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

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-sparkle {
    animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Fredoka', cursive;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}


/* Hero Instagram Section - Natural Integration with Centered Posts */
.hero-instagram-section {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 600px;
    position: static;
    transform: none;
    transition: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Instagram Call-to-Action Header - Now a clickable link */
.instagram-cta-header {
    display: block;
    text-decoration: none;
    text-align: center;
    margin-bottom: 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.85) 0%, rgba(255, 143, 163, 0.85) 100%);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 138, 0.6);
    box-shadow: 0 6px 20px rgba(255, 107, 138, 0.3);
    backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.instagram-cta-header:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 107, 138, 0.95) 0%, rgba(255, 143, 163, 0.95) 100%);
    border-color: rgba(255, 107, 138, 0.8);
    box-shadow: 0 8px 25px rgba(255, 107, 138, 0.4);
    text-decoration: none;
}

.instagram-cta-header:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.instagram-cta-header h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: 'Fredoka', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.instagram-handle {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.instagram-follow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.instagram-icon {
    font-size: 1.2rem;
}

.follow-arrow {
    transition: transform 0.3s ease;
}

.instagram-follow-btn:hover .follow-arrow {
    transform: translateX(3px);
}

/* Instagram Footer - Compact Follow Button */
.instagram-footer {
    text-align: center;
    margin-top: 0.5rem;
}

.instagram-follow-btn-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.instagram-follow-btn-compact:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.instagram-follow-btn-compact .instagram-icon {
    font-size: 1rem;
}

/* Instagram Feed Container - Enhanced for Image Prominence */
.instagram-feed-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Instagram Feed - Optimized for faster loading */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 {
    margin: 0 auto !important;
    margin-top: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    border-radius: 0;
    overflow: visible;
    max-height: 700px;
    min-height: 400px;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Optimize loading performance */
    will-change: contents;
    contain: layout;
}

/* Bigger Instagram posts for better visibility */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item {
    margin: 12px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18) !important;
    transition: all 0.3s ease !important;
    background: white !important;
    min-width: 280px !important;
    min-height: 280px !important;
    max-width: 320px !important;
    flex: 1 1 300px !important;
}

.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28) !important;
    z-index: 5 !important;
}

/* Bigger images for better ice cream showcase */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 img {
    border-radius: 14px !important;
    transition: transform 0.3s ease !important;
    width: 100% !important;
    height: auto !important;
    min-height: 240px !important;
    object-fit: cover !important;
}

/* Perfectly centered feed container with better spacing */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts {
    gap: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Maximize post content size */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-content {
    padding: 0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Center the posts wrapper completely */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-wrapper {
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    margin-top: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
}

/* Additional centering for any inner containers */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-view {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
}

/* Remove all possible widget internal spacing */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 > div,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-widget-container,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-container,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-main {
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
}

/* HIDE distracting text elements - Focus ONLY on images */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-text,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-description,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-hashtags,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-date,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-likes,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-comments,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-caption,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 p,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .text {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
}

/* Make image area take full space with no text distractions */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-media {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force image-only layout */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-content {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-media img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
}

/* Hide Elfsight branding and unwanted elements - comprehensive approach */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-view-header,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-view-load-more,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-widget-toolbar,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-header,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-link,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-branding,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-footer,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 [data-eapps-branding],
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 a[href*="elfsight"],
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 a[href*="free"],
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-widget-footer,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-widget-header,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-widget-footer,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-widget-header {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* HIDE distracting text elements - Focus ONLY on images */
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-text,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-description,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-hashtags,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-date,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-likes,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-comments,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item-caption,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 p,
.elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .text {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
}

.instagram-follow-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    padding: 1rem;
    border-radius: 18px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 1rem;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.instagram-icon {
    font-size: 1.5rem;
}

.instagram-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.instagram-text strong {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.instagram-text small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 3s infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 40px 0;
    background: var(--white);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.founders-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.founders-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founders-photo-interactive {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}

.founders-photo {
    margin-bottom: 2rem;
}

.founders-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    max-width: 100%;
}

.founders-photo-interactive:hover .founders-img {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.founders-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-style: italic;
    color: var(--text-light);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.founders-photo-interactive:hover .founders-caption {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Face overlay system */
.face-overlay {
    position: absolute;
    cursor: pointer;
    z-index: 2;
}

.face-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

.founder-tooltip {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    white-space: nowrap;
    border: 2px solid var(--accent-color);
    min-width: 200px;
}

.founder-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--accent-color);
}

.face-overlay:hover .founder-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.founder-tooltip .founder-avatar {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.face-overlay:hover .founder-avatar {
    transform: scale(1.2) rotate(10deg);
}

.founder-tooltip h3 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-family: 'Fredoka', cursive;
    font-size: 1.1rem;
    font-weight: 600;
}

.founder-tooltip .founder-title {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

/* Position face overlays - adjust these coordinates based on actual face positions */
.face-ming {
    top: 30%;
    left: 30%;
}

.face-michael {
    top: 30%;
    right: 30%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .founders-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-height: none;
    }
    
    .founders-img {
        height: auto;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .timeline-emoji {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-item {
        margin-bottom: 1.5rem;
    }
    
    .founder-tooltip {
        min-width: 180px;
        padding: 0.8rem 1rem;
    }
    
    .founder-tooltip h3 {
        font-size: 1rem;
    }
    
    .founder-tooltip .founder-title {
        font-size: 0.8rem;
    }
    
    .face-ming {
        left: 25%;
    }
    
    .face-michael {
        right: 25%;
    }
    
    .story h3 {
        font-size: 1.4rem;
        text-align: center;
    }
}

.story {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.story h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Fredoka', cursive;
    font-size: 1.6rem;
}

.story-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 1.75rem;
    top: 3rem;
    bottom: 3rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.timeline-emoji {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
    border: 3px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

/* Products Section */
.products {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4fd 100%);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.product-card.featured {
    border: 3px solid var(--accent-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
}

.product-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.feature p {
    color: var(--text-light);
}

/* Clients Section */
.clients {
    padding: 40px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.client-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.client-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Specific positioning for Weddings & Events image to show text better */
.client-img[src="images/image5.png"],
.client-img[alt="Wedding Events"] {
    object-position: center 25%;
}

/* Specific positioning for Artisan Process image to show person's head */
.client-img[src="images/image6.png"],
.client-img[alt="Behind the Scenes"] {
    object-position: center 20%;
}

.client-info {
    padding: 2rem;
}

.client-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.client-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.client-stats {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 8rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

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

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--text-dark);
    font-family: 'Fredoka', cursive;
}

.contact-item p {
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-top: 1rem;
    width: 100%;
}

.whatsapp-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-icon {
    font-size: 1.3rem;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.whatsapp-text strong {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.whatsapp-text small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.services-list {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 1rem;
}

.services-list h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.services-list ul {
    list-style: none;
}

.services-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid #eee;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

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

.form-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0-11.046 8.954-20 20-20v40c-11.046 0-20-8.954-20-20z'/%3E%3C/g%3E%3C/svg%3E");
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Fredoka', cursive;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-fun {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-style: italic;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

/* Animations */
@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 fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-instagram-section {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 {
        min-height: 350px;
        max-height: 550px;
    }
    
    /* Bigger posts for tablet */
    .elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item {
        min-width: 220px !important;
        min-height: 220px !important;
        max-width: 260px !important;
    }
    
    .elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 img {
        min-height: 180px !important;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content-centered {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .founders-section {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-emoji {
        font-size: 3rem;
    }

    .floating-emojis .emoji {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-instagram-section {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .instagram-cta-header {
        padding: 0.8rem;
        margin-bottom: 0;
        border-radius: 10px;
    }
    
    .instagram-cta-header h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .instagram-handle {
        font-size: 0.9rem;
    }
    
    .elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 {
        min-height: 280px;
        max-height: 450px;
    }
    
    /* Bigger posts for mobile */
    .elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 .eapps-instagram-feed-posts-item {
        min-width: 190px !important;
        min-height: 190px !important;
        max-width: 220px !important;
    }
    
    .elfsight-app-174874a9-ddbe-4d78-9e34-204899f34a66 img {
        min-height: 150px !important;
    }
}

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .form-buttons {
        gap: 0.5rem;
    }
}