:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray: #f4f4f4;
    --border: 2px solid var(--black);
    --primary-font: 'Cinzel', serif;
    --secondary-font: 'Lato', sans-serif;
    --transition-speed: 0.3s;
}

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

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

h1, h2, h3, .brand {
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.btn {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--black);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(0);
}

.btn:hover, .btn:focus {
    background: transparent;
    color: var(--black);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 4px double var(--black);
    position: relative;
    z-index: 10;
    background: var(--white);
}

.logo-container img {
    max-width: 250px;
    height: auto;
    transition: transform var(--transition-speed) ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./assets/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 60vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1;
    pointer-events: none;
}

.hero > * { 
    position: relative; 
    z-index: 2; 
}

.hero h1 { 
    font-size: 4rem; 
    margin-bottom: 1rem; 
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: fadeInDown 1s ease-out;
}

.hero p { 
    font-size: 1.3rem; 
    margin-bottom: 2.5rem; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 1s;
    animation-fill-mode: backwards;
}

.products { 
    padding: 5rem 0; 
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--black);
    margin: 15px auto 0;
    opacity: 0.8;
}

.collection-section {
    padding: 5rem 0;
    background-color: var(--gray);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.collection-section:nth-child(even) {
    background-color: var(--white);
}

.collection-section .section-title {
    margin-bottom: 3rem;
}

.collection-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.collection-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.collection-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-image-wrapper:hover img { 
    transform: scale(1.1); 
}

.collection-cta {
    text-align: center;
    margin-top: 2rem;
}

footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    margin-top: 0;
    border-top: 5px double var(--white);
}

footer p { 
    font-size: 1rem; 
    opacity: 0.8; 
}

footer p:last-child {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 2rem; }
}
