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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

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

/* Header */
.header {
    background-color: #21110cfa;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

.btn-contact {
    background-color: #8B4513;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background-color: #2c1810;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: repeating-linear-gradient(
        0deg,
        rgba(139, 69, 19, 0.25) 0px,
        rgba(44, 24, 16, 0.35) 2px,
        rgba(139, 69, 19, 0.20) 4px,
        rgba(44, 24, 16, 0.28) 6px,
        rgba(139, 69, 19, 0.30) 8px,
        rgba(44, 24, 16, 0.22) 10px,
        transparent 12px,
        transparent 20px
    );
    mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.large-text {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.accent-box {
    background-color: #8B4513;
    color: #2c1810;
    padding: 20px 40px;
    font-size: 48px;
    font-weight: 900;
    display: inline-block;
    width: fit-content;
}

/* Intro and Stats Section */
.intro-stats-section {
    background-color: #fff;
    padding: 80px 0;
}

.intro-stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c1810;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: #2c1810;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Brands Section */
.brands-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 50px;
    text-align: center;
}

.brand-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0;
}

.brand-carousel-container::before,
.brand-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.brand-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
}

.brand-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

.brand-carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollBrands 30s linear infinite;
    width: fit-content;
}

.brand-carousel-track.paused {
    animation-play-state: paused;
}

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

.brand-logo {
    aspect-ratio: 1;
    width: 180px;
    min-width: 180px;
    border-radius: 50%;
    border: 2px solid #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.15);
}

.brand-logo a {
    width: 100%;
    height: 100%;
    display: block;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* WE CREATE Section */
.we-create-section {
    background-color: #2c1810;
    padding: 100px 0;
    color: #fff;
}

.we-create-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.we-help-title-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: baseline;
}

.we-help-subtitle-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.large-text-small {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.brands-highlight {
    background-color: #8B4513;
    padding: 8px;
    border-radius: 4px;
}

.large-text-dark {
    font-size: 72px;
    font-weight: 900;
    color: #2c1810;
    line-height: 1;
}

.accent-box-white {
    color: #2c1810;
    font-size: 72px;
    font-weight: 900;
    display: inline-block;
    width: fit-content;
}

.we-create-left p,
.we-help-left p,
.retail-left p,
.licensed-right p,
.about-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.we-help-left p,
.retail-left p,
.about-left p {
    color: #fff;
}

.we-create-right,
.we-help-right {
    display: flex;
    justify-content: center;
}

.media-placeholder {
    width: 100%;
    max-width: 400px;
}

.phone-frame {
    aspect-ratio: 9/16;
    background-color: #1a1a1a;
    border-radius: 25px;
    padding: 10px;
    border: 3px solid #8B4513;
}

.phone-content {
    width: 100%;
    height: 100%;
    background-color: #333;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* WE GET RECOGNIZED Section */
.we-recognized-section {
    background-color: #8B4513;
    padding: 100px 0;
}

.we-recognized-content {
    text-align: center;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.recognition-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
}

/* WE HELP BRANDS Section */
.we-help-section {
    background-color: #3d2818;
    padding: 100px 0;
    color: #fff;
}

.we-help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.we-help-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.we-help-image {
    max-width: 80%;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    display: block;
}

.we-help-right a:hover .we-help-image {
    transform: scale(1.05);
}

.subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
}

/* Partners Section */
.partners-section {
    background-color: #fff;
    padding: 80px 0;
}

.partner-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 30px 0;
}

.partner-carousel-container::before,
.partner-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.partner-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.partner-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.partner-carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.partner-carousel-track.paused {
    animation-play-state: paused;
}

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

.partner-logo {
    aspect-ratio: 1;
    width: 180px;
    min-width: 180px;
    border-radius: 50%;
    border: 2px solid #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.15);
}

.partner-logo a {
    width: 100%;
    height: 100%;
    display: block;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* WE SHOP Section */
.we-shop-section {
    background-color: #8B4513;
    padding: 100px 0;
}

.we-shop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subtitle-dark {
    font-size: 32px;
    font-weight: 900;
    color: #2c1810;
    margin: 20px 0;
}

.we-shop-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c1810;
    margin-bottom: 30px;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background-color: #d4a574;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    font-size: 18px;
    color: #2c1810;
    font-weight: 600;
}

.product-brands {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-brand {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #2c1810;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #2c1810;
}

/* Retail Section */
.retail-section {
    background-color: #2c1810;
    padding: 100px 0;
    color: #fff;
}

.retail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.retail-logos {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.retail-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Licensed Section */
.licensed-section {
    background-color: #fff;
    padding: 100px 0;
}

.licensed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.licensed-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c1810;
}

/* About Section */
.about-section {
    background-color: #2c1810;
    padding: 100px 0;
    color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-left {
    text-align: center;
}

.section-heading-accent {
    font-size: 48px;
    font-weight: 900;
    color: #8B4513;
    margin-bottom: 30px;
}

.about-left p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

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

.contact-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #2c1810;
    margin-top: 30px;
}

.contact-question {
    font-size: 32px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 30px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-form-wrapper:hover .contact-form-overlay {
    opacity: 1;
    pointer-events: all;
}

.overlay-text {
    text-align: center;
    padding: 20px;
}

.overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 10px;
}

.overlay-subtitle {
    font-size: 16px;
    color: #2c1810;
    line-height: 1.5;
}

.instagram-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.instagram-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-family: inherit;
    color: #2c1810;
    background-color: #f5f5f5;
    border: 1px solid #2c1810;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #8B4513;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #2c1810;
    opacity: 1;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-submit {
    background-color: #2c1810;
    color: #FFD700;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3d2818;
}

/* Footer */
.footer {
    background-color: #2c1810;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-bold {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.footer-email {
    font-size: 18px;
    color: #8B4513;
}

.footer-email a {
    color: #8B4513;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-email a:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #8B4513;
    text-decoration: none;
    cursor: pointer;
}

.footer-logo:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .intro-stats-content,
    .we-create-content,
    .we-help-content,
    .we-shop-content,
    .retail-content,
    .licensed-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }



    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-right {
        align-items: flex-start;
    }

    .large-text,
    .large-text-dark {
        font-size: 48px;
    }

    .accent-box {
        font-size: 48px;
        padding: 15px 30px;
    }
    
    .accent-box-white {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .nav {
        gap: 15px;
        font-size: 14px;
    }



    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 48px;
    }
}
