/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Trocchi', Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #222;
    background-color: #f9f5f0;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #faf7f3;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    min-height: 100vh;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px 20px;
    max-width: 900px;
}

h1 {
    font-family: 'Trocchi', Georgia, serif;
    font-size: 78px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 20px;
    text-transform: none;
    line-height: 1.1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.03);
}

.subheadline {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 1.5px;
    color: #555;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    text-align: center;
    text-transform: none;
    line-height: 1.3;
}

/* Button styles */
.brands-button {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    background-color: #8b7355;
    border: none;
    border-radius: 30px;
    padding: 14px 36px 14px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 115, 85, 0.3);
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.brands-button:hover {
    background-color: #76614a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.4);
}

.brands-button:hover .chevron {
    animation-duration: 1s;
}

.brands-button:active {
    transform: translateY(0);
}

.chevron {
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 16px;
    height: 16px;
    animation: pulse 1.5s infinite ease-in-out;
}

.chevron-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    display: block;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(4px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }
}

/* Manifesto section */
.manifesto-section {
    padding: 80px 40px;
    background-color: #f7f3ea;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.manifesto-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23000000' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
}

.manifesto-section h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.manifesto-section h2::before {
    content: "Est. 2025";
    display: block;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

.manifesto-text {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: justify;
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    hyphens: auto;
}

.manifesto-text p {
    margin-bottom: 16px;
    text-indent: 0;
}

.manifesto-text p:first-child::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 60px;
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 4px;
    padding-bottom: 5px;
    font-weight: 700;
}

.manifesto-text p:last-child {
    margin-bottom: 0;
}

.manifesto-content .brands-button {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

/* Brands section */
.brands-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01)), #fff;
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.03);
}

.brands-section h2 {
    font-family: 'Trocchi', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
}

.brands-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.brand-item {
    width: 340px;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.brands-carousel .brand-item:first-child {
    padding-top: 70px; /* Add 30px more padding to the top */
}

.brand-item.coming-soon {
    background-color: #f9f7f4;
    border: 1px dashed rgba(139, 115, 85, 0.3);
}

.placeholder-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(139, 115, 85, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.placeholder-logo span {
    font-size: 60px;
    color: rgba(139, 115, 85, 0.4);
    font-weight: 300;
}

.brand-item h3 {
    font-family: 'Trocchi', Georgia, serif;
    font-size: 28px;
    margin-bottom: 12px;
    color: #222;
}

.brand-item p, .brand-link p {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.brand-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.brand-link.full-box-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.brand-link:hover {
    opacity: 0.9;
}

.brand-logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

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

/* Footer styles */
footer {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #888;
    background-color: #f5f0e8;
    border-top: 1px solid #e8e2db;
    position: relative;
    z-index: 10;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

footer p {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 64px;
    }
    
    .subheadline {
        font-size: 24px;
        letter-spacing: 1.2px;
    }
    
    .brands-section h2, .manifesto-section h2 {
        font-size: 42px;
    }
    
    .manifesto-text {
        font-size: 16px;
        column-count: 2;
        column-gap: 30px;
    }
    
    .manifesto-text p:first-child::first-letter {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .content, .brands-section, .manifesto-section {
        padding: 60px 30px;
    }
    
    h1 {
        font-size: 48px;
        letter-spacing: 1px;
    }
    
    .subheadline {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .brands-section h2, .manifesto-section h2 {
        font-size: 36px;
    }
    
    .manifesto-text {
        font-size: 15px;
        line-height: 1.7;
        column-count: 1;
        text-align: justify;
        hyphens: auto;
    }
    
    .manifesto-text p {
        margin-bottom: 20px;
    }
    
    .manifesto-content {
        padding: 30px;
    }
    
    .manifesto-text p:first-child::first-letter {
        font-size: 48px;
    }
    
    .brand-item h3 {
        font-size: 24px;
    }
    
    .brand-logo {
        max-width: 220px;
        margin-bottom: 25px;
    }
    
    .brands-carousel {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-item {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 480px) {
    .content, .brands-section, .manifesto-section {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 42px;
        letter-spacing: 1px;
    }
    
    .subheadline {
        font-size: 20px;
        letter-spacing: 0.8px;
    }
    
    .brands-section h2, .manifesto-section h2 {
        font-size: 32px;
    }
    
    .manifesto-section h2::before {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .manifesto-text {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
        hyphens: none;
    }
    
    .manifesto-content {
        padding: 25px 20px;
        border-left: none;
        border-right: none;
    }
    
    .manifesto-text p:first-child::first-letter {
        font-size: 42px;
        margin-top: 2px;
    }
    
    .brands-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .brand-logo {
        max-width: 180px;
        margin-bottom: 20px;
    }
}

.brand-name-link {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.brand-name-link:hover {
    color: #8b7355;
    border-bottom-color: #8b7355;
} 