/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    --primary: #E1306C;
    --secondary: #FF6B35;
    --accent: #FFBB00;
    --dark: #1A1A1A;
    --dark-light: #2A2A2A;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;

    --gradient-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --gradient-primary: linear-gradient(135deg, #E1306C 0%, #FF6B35 100%);
    --gradient-accent: linear-gradient(135deg, #FFBB00 0%, #FF6B35 100%);

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

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

img {
    max-width: 100%;
    display: block;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
}

.logo__emoji {
    font-size: 2rem;
}

.nav__links {
    display: flex;
    gap: 2.5rem;
}

.nav__links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav__links a:hover {
    color: var(--primary);
}

.nav__socials {
    display: flex;
    gap: 1rem;
}

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

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram {
    background: var(--gradient-instagram);
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.tiktok {
    background: #000000;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(225, 48, 108, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-social {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

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

.youtube-btn {
    background: #FF0000;
    color: var(--white);
}

.tiktok-btn {
    background: #000000;
    color: var(--white);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 8rem 2rem 4rem;
}

.hero__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.8), rgba(255, 107, 53, 0.7));
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(to right, #FFBB00, #FFE066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 500;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero__cta .btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-color: var(--white);
    color: var(--white);
}

.hero__cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.hero__stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-content {
    text-align: left;
}

.stat-content strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-content span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* ===================================
   SECTION STYLES
   =================================== */
.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 8rem 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.about__tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

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

.highlight-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
}

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

/* ===================================
   CONTENT SECTION
   =================================== */
.content {
    padding: 8rem 0;
    background: var(--light);
}

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

.content__card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.content__icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.content__card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

.content__platforms {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.content__platforms span {
    background: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

/* ===================================
   INSTAGRAM FEED
   =================================== */
.instagram-feed {
    padding: 8rem 0;
}

.feed__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.feed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feed__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.feed__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feed__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.8), rgba(255, 107, 53, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.feed__item:hover .feed__overlay {
    opacity: 1;
}

.feed__item:hover img {
    transform: scale(1.05);
}

.feed__stats {
    display: flex;
    gap: 2rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===================================
   COMMUNITY SECTION
   =================================== */
.community {
    padding: 8rem 0;
    background: var(--light);
}

.community__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.community__card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

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

.community__card-header {
    margin-bottom: 2rem;
}

.community__card-header i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community__card-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
}

.community__stats {
    margin-bottom: 2rem;
}

.big-stat {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.community__stats p {
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

.community__features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.community__features li {
    padding: 0.75rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--light);
}

/* ===================================
   COLLABORATIONS SECTION
   =================================== */
.collab {
    padding: 8rem 0;
}

.collab__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.collab__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.collab__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.collab__stat {
    text-align: left;
}

.collab__stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.collab__stat span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.collab__brands {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
}

.collab__brands strong {
    color: var(--dark);
    margin-bottom: 1rem;
    display: block;
}

.brands-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.brands-list span {
    background: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.collab__image {
    position: relative;
}

.collab__image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.collab__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.collab__badge i {
    color: #1DA1F2;
    font-size: 1.25rem;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter {
    padding: 6rem 0;
    background: var(--gradient-primary);
}

.newsletter__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter__content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter__content > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.newsletter__form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.newsletter__form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter__form input:focus {
    outline: none;
}

.newsletter__form .btn {
    background: var(--dark);
    color: var(--white);
}

.newsletter__privacy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0 1.5rem;
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.footer__socials a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer__links h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.5);
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 4rem;
    }

    .about__grid,
    .collab__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav__links,
    .nav__socials {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero__cta {
        flex-direction: column;
    }

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

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

    .newsletter__form {
        flex-direction: column;
    }

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

    .feed__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .collab__image {
        order: -1;
    }
}

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

    .content__grid,
    .community__grid {
        grid-template-columns: 1fr;
    }
}