/* Font Face */
@font-face {
    font-family: 'Recoleta';
    src: url('assets/fonts/RecoletaRegular/font.woff2') format('woff2'),
         url('assets/fonts/RecoletaRegular/font.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --black: #000000;
    --gold: #a0956b;
    --gold-light: #c4bbaa;
    --gold-dark: #7a7050;
    --gray: #333333;
    --gray-light: #666666;
    --white: #FFFFFF;
}

body {
    font-family: 'Recoleta', Georgia, serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header Styles */
.header {
    padding: 60px 0 40px;
    text-align: center;
}

.logo h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 5px;
}

.logo .subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--gold-light);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 100px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--gray);
}

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

.mission h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.mission p {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.8;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    border-top: 1px solid var(--gray);
}

.product-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.product-card {
    background: linear-gradient(135deg, var(--gray) 0%, var(--black) 100%);
    border: 2px solid var(--gold-dark);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 149, 107, 0.1), transparent);
    transition: left 0.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(160, 149, 107, 0.2);
}

.product-logo {
    margin-bottom: 40px;
}

.kolo-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(62%) sepia(13%) saturate(828%) hue-rotate(22deg) brightness(91%) contrast(88%);
    transition: all 0.3s ease;
}

.product-card:hover .kolo-logo {
    filter: brightness(0) saturate(100%) invert(75%) sepia(10%) saturate(531%) hue-rotate(22deg) brightness(96%) contrast(90%);
    transform: scale(1.05);
}

.product-tagline {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-philosophy {
    font-size: 22px;
    font-weight: 500;
    color: var(--gold);
    font-style: italic;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 16px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(160, 149, 107, 0.4);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Values Section */
.values {
    padding: 80px 0;
    border-top: 1px solid var(--gray);
}

.values h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: var(--gray);
    transform: translateY(-5px);
}

.value-item h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-item p {
    font-size: 16px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--gold-dark);
    font-weight: 300;
    font-style: italic;
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

.delay-4 {
    transition-delay: 0.8s;
}

.delay-5 {
    transition-delay: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .logo h1 {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .mission h3,
    .product-header h3,
    .values h3 {
        font-size: 28px;
    }

    .mission p {
        font-size: 18px;
    }

    .product-card {
        padding: 40px 30px;
    }

    .product-card h4 {
        font-size: 32px;
    }

    .product-tagline {
        font-size: 18px;
    }

    .product-philosophy {
        font-size: 19px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 16px;
    }
}

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

    .hero-description {
        font-size: 16px;
    }

    .logo h1 {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .mission,
    .product-showcase,
    .values {
        padding: 60px 0;
    }
}

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

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--black);
}
