/* ============================================
   COLETTE THEME — Custom Styles
   Clean, semantic, SEO-optimized
   ============================================ */

:root {
    --color-bg: #0a0a0a;
    --color-text: #edece8;
    --color-gold: #c8a54e;
    --color-white: #ffffff;
    --color-dark-section: #111111;
    --color-overlay: rgba(0, 0, 0, 0.55);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --max-width: 1200px;
}

/* Override GeneratePress defaults */
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-gold);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.1;
}

/* Navigation overrides */
.site-header {
    background: transparent !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Hero section */
.colette-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background-size: cover;
    background-position: center;
}

.colette-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 1;
}

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

.colette-hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Buttons */
.btn-colette {
    display: inline-block;
    min-width: 220px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.btn-colette:hover {
    background: var(--color-white);
    color: var(--color-bg);
}

.btn-colette.gold {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-colette.gold:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Content sections */
.colette-section {
    padding: 100px 40px;
}

.colette-section.dark {
    background: var(--color-dark-section);
}

.colette-section h2 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.colette-section p {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 680px;
    color: var(--color-text);
}

/* Grid layout */
.colette-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Cards */
.colette-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.colette-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.colette-card:hover img {
    transform: scale(1.05);
}

/* Map */
.colette-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(0.8) contrast(1.1) brightness(0.7);
    transition: filter 0.4s ease;
}

.colette-map:hover iframe {
    filter: grayscale(0.2) contrast(1) brightness(0.85);
}

/* Footer */
.colette-footer {
    padding: 80px 40px 40px;
    background: var(--color-bg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .colette-grid {
        grid-template-columns: 1fr;
    }
    
    .colette-section {
        padding: 60px 20px;
    }
    
    .colette-map iframe {
        height: 300px;
    }
}