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

body {
    font-family: 'Satoshi', 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #f5f1eb;
}

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

/* Color Variables */
:root {
    --ocean-blue: #4a90a4;
    --turquoise: #7fb3d3;
    --light-blue: #b8d4e3;
    --sandy-beige: #f5f1eb;
    --off-white: #fefefe;
    --coral: #ff7f7f;
    --muted-peach: #ffb3a7;
    --dark-blue: #2c5f7a;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: var(--ocean-blue);
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--ocean-blue);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--ocean-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation and Hero Responsive */
@media screen and (max-width: 768px) {
    .navbar {
        width: 95%;
        top: 10px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -70%;
        top: 90px;
        flex-direction: column;
        background: white;
        width: 70%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
        border-radius: 20px;
    }
    
    .nav-menu.active {
        right: 15%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        color: var(--text-dark);
    }
    
    .nav-link:hover {
        color: var(--ocean-blue);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Mobile Styles */
    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .wave-animation svg {
        height: 80px;
    }
    
    /* About Section Mobile Styles */
    .about {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
    }
    
    .about-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Digital Shop Mobile Styles */
    .shop {
        padding: 2rem 0;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .shop-logo {
        height: 150px;
    }
    
    .etsy-logo, .depop-logo {
        font-size: 2rem;
        padding: 15px 30px;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .product-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Collaborations Mobile Styles */
    .collaborations {
        padding: 2rem 0;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collaboration-item {
        padding: 1.5rem 1rem;
    }
    
    .collaboration-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .collaboration-icon i {
        font-size: 1.8rem;
    }
    
    .collaboration-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .collaboration-item p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Contact Mobile Styles */
    .contact {
        padding: 2rem 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .contact-image img {
        height: 350px;
        border-radius: 60px 0 60px 0;
    }
    
    .contact-form-container {
        padding: 20px 10px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 1rem;
    }
    
    .btn-join {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 5px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        max-width: 250px;
    }
    
    .wave-animation svg {
        height: 60px;
    }
    
    /* About Section Small Mobile */
    .about {
        padding: 1.5rem 0;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .about-img {
        max-width: 250px;
    }
    
    /* Digital Shop Small Mobile */
    .shop {
        padding: 1.5rem 0;
    }
    
    .product-card {
        max-width: 300px;
    }
    
    .shop-logo {
        height: 120px;
    }
    
    .etsy-logo, .depop-logo {
        font-size: 1.8rem;
        padding: 12px 25px;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .product-content p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Collaborations Small Mobile */
    .collaborations {
        padding: 1.5rem 0;
    }
    
    .collaboration-grid {
        gap: 1rem;
    }
    
    .collaboration-item {
        padding: 1.2rem 0.8rem;
    }
    
    .collaboration-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .collaboration-icon i {
        font-size: 1.5rem;
    }
    
    .collaboration-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .collaboration-item p {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    /* Contact Small Mobile */
    .contact {
        padding: 1.5rem 0;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .contact-image img {
        height: 280px;
        border-radius: 40px 0 40px 0;
    }
    
    .contact-form-container {
        padding: 15px 5px;
    }
    
    .contact-header h2 {
        font-size: 1.7rem;
    }
    
    .contact-header p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .btn-join {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Tablet Responsive */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    /* About Section Tablet */
    .about-content {
        gap: 3rem;
    }
    
    .about-text h3 {
        font-size: 1.9rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
    }
    
    .about-img {
        max-width: 400px;
    }
    
    /* Digital Shop Tablet */
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .product-card {
        max-width: 400px;
    }
    
    .shop-logo {
        height: 180px;
    }
    
    .etsy-logo, .depop-logo {
        font-size: 2.2rem;
    }
    
    /* Collaborations Tablet */
    .collaboration-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .collaboration-item {
        padding: 2rem 1.5rem;
    }
    
    .collaboration-icon {
        width: 75px;
        height: 75px;
    }
    
    .collaboration-icon i {
        font-size: 1.9rem;
    }
    
    .collaboration-item h3 {
        font-size: 1.35rem;
    }
    
    .collaboration-item p {
        font-size: 1rem;
    }
    
    /* Contact Tablet */
    .contact-wrapper {
        gap: 3rem;
    }
    
    .contact-image img {
        height: 500px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1.05rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sandy-beige) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--ocean-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

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



/* Wave Animation */
.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-animation svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-animation .shape-fill {
    fill: var(--sandy-beige);
}

/* Individual wave layer animations */
.wave-animation path:nth-child(1) {
    animation: wave1 15s ease-in-out infinite;
}

.wave-animation path:nth-child(2) {
    animation: wave2 12s ease-in-out infinite reverse;
}

.wave-animation path:nth-child(3) {
    animation: wave3 18s ease-in-out infinite;
}

.wave-animation path:nth-child(4) {
    animation: wave4 10s ease-in-out infinite reverse;
}

.wave-animation path:nth-child(5) {
    animation: wave5 14s ease-in-out infinite;
}

.wave-animation path:nth-child(6) {
    animation: wave6 8s ease-in-out infinite reverse;
}

/* Wave keyframe animations */
@keyframes wave1 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(-25px) scaleY(1.1); }
    50% { transform: translateX(0) scaleY(0.9); }
    75% { transform: translateX(25px) scaleY(1.05); }
}

@keyframes wave2 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    33% { transform: translateX(30px) scaleY(1.15); }
    66% { transform: translateX(-20px) scaleY(0.85); }
}

@keyframes wave3 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    20% { transform: translateX(-15px) scaleY(1.08); }
    40% { transform: translateX(20px) scaleY(0.92); }
    60% { transform: translateX(-10px) scaleY(1.12); }
    80% { transform: translateX(15px) scaleY(0.88); }
}

@keyframes wave4 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-35px) scaleY(1.2); }
}

@keyframes wave5 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(20px) scaleY(0.95); }
    75% { transform: translateX(-25px) scaleY(1.1); }
}

@keyframes wave6 {
    0%, 100% { transform: translateX(0) scaleY(1); }
    30% { transform: translateX(-40px) scaleY(1.25); }
    70% { transform: translateX(30px) scaleY(0.8); }
}

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

/* Contact Section Header - Reduced spacing */
.contact .section-header {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-header-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--sandy-beige);
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--turquoise);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.about-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 120px 0 120px 0;
    box-shadow: 0 15px 30px rgba(74, 144, 164, 0.15);
    animation: bubbleFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.about-img:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 15px 30px rgba(74, 144, 164, 0.15);
    }
    25% {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 35px rgba(74, 144, 164, 0.2);
    }
    50% {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 25px 40px rgba(74, 144, 164, 0.25);
    }
    75% {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 35px rgba(74, 144, 164, 0.2);
    }
}

/* Blog Section */
.blog {
    padding: 3rem 0;
    background: var(--sandy-beige);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 700%;
}

.carousel-slide {
    min-width: calc(100% / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.carousel-slide iframe {
    border-radius: 40px 0 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 600px;
    max-width: 90%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--ocean-blue);
}

@media (max-width: 768px) {
    .carousel-slide {
        padding: 0.5rem;
    }
    
    .carousel-slide iframe {
        width: 320px;
        height: 480px;
        max-width: 95%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slide iframe {
        width: 280px;
        height: 420px;
        max-width: 90%;
    }
}

/* Shop Section */
.shop {
    padding: 3rem 0;
    background: var(--sandy-beige);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-content {
    padding: 2rem;
    text-align: center;
}

.product-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

/* Shop Card Styling */
.shop-card {
    border-radius: 50px 0 50px 0;
}

.shop-card .shop-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    border-radius: 50px 0 0 0;
}

.etsy-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #f56040, #ff8a65);
    padding: 20px 40px;
    border-radius: 50px 0 50px 0;
    box-shadow: 0 10px 30px rgba(245, 96, 64, 0.3);
}

.depop-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #00d4aa, #26d0ce);
    padding: 20px 40px;
    border-radius: 50px 0 50px 0;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.shop-btn-card {
    transition: all 0.3s ease;
}

.shop-btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Collaborations Section */
.collaborations {
    padding: 3rem 0;
    background: var(--sandy-beige);
}

.collaboration-island {
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 4rem;
    margin: 2rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

.collaboration-island::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.05) 0%, transparent 70%);
    animation: floatGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-10px, -10px) scale(1.1);
        opacity: 0.8;
    }
}

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

.collaboration-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 164, 0.1);
}

.collaboration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 144, 164, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.collaboration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--turquoise), var(--ocean-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(74, 144, 164, 0.3);
    transition: all 0.3s ease;
}

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

.collaboration-icon i {
    font-size: 2rem;
    color: white;
}

.collaboration-item h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.collaboration-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.collaboration-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(31, 193, 238, 0.1);
    border-radius: 100px;

}

.collaboration-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.collab-text h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.collab-text p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.collab-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-size: 2rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.collab-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(74, 144, 164, 0.15);
}

/* Responsive Design for Collaborations */
@media (max-width: 768px) {
    .collaboration-island {
        padding: 2.5rem 1.5rem;
        margin: 1rem;
        border-radius: 25px;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collaboration-item {
        padding: 1.5rem 1rem;
    }
    
    .collaboration-icon {
        width: 60px;
        height: 60px;
    }
    
    .collaboration-icon i {
        font-size: 1.5rem;
    }
    
    .collaboration-cta {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .collaboration-cta p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.blog-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 500;
}

.blog-cta .btn i {
    font-size: 1.1rem;
}

/* Testimonials Marquee */
.testimonials-section {
    margin: 3rem 0;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonials-marquee {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    animation: marqueeScroll 15s linear infinite;
    gap: 2rem;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 350px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px 15px 50px 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(74, 144, 164, 0.1);
    border: 1px solid rgba(74, 144, 164, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 164, 0.15);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .collaboration-cta {
        padding: 1rem 0.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .collaboration-cta p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .testimonials-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-item {
        width: 280px;
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
}

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

/* Pause animation on hover */
.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 280px;
        padding: 1.2rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
    
    .testimonials-section h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    background: var(--sandy-beige);
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-image {
    flex: 1;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 120px 0 120px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    flex: 1;
    padding: 40px;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 10px 0 15px 0;
    line-height: 1.2;
}

.contact-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-family: inherit;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87CEEB;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1);
}

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

.form-actions {
    display: flex;
    justify-content: flex-start;
}

.btn-join {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-join:hover {
    background: linear-gradient(135deg, #4682B4, #87CEEB);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(70, 130, 180, 0.3);
}

/* Contact Section Responsive - Integrated with main responsive framework */

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.3);
}

.btn-join:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile-specific form styles */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .btn-join {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Responsive Design for Contact - Integrated with main responsive framework */

/* Footer */
.footer {
    background: #4a4a4a;
    padding: 3rem 0 2rem 0;
    margin: 0 auto;
    width: 75%;
    border-radius: 80px 80px 0 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: #666;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: #888;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 1.5rem;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}



.footer-copyright a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 70%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

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

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

    .etsy-logo, .depop-logo {
        font-size: 2rem;
        padding: 15px 30px;
    }
    
    .shop-card .shop-logo {
        height: 150px;
    }

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

    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

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

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

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

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.hero-text,
.about-text,
.about-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.blog-card,
.product-card {
    transition: all 0.3s ease;
}

.blog-card:hover,
.product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sandy-beige);
}

::-webkit-scrollbar-thumb {
    background: var(--turquoise);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ocean-blue);
}