/*
Theme Name: WineHunter Studio
Theme URI: https://winehunter.studio
Author: MG Group
Author URI: https://mg-group.ltd
Description: A refined, elegant coming soon theme for WineHunter Studio. Wine bottle with an arrow – because great wine doesn't find itself.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: winehunter-studio
Tags: one-column, custom-menu, featured-images, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Brand Colors – extracted directly from logo */
    --wh-teal:           #395256;
    --wh-teal-deep:      #2A3D40;
    --wh-teal-dark:      #1E2D30;
    --wh-teal-light:     #4A6A6F;
    --wh-teal-muted:     #506E72;
    --wh-salmon:         #f8c4af;
    --wh-salmon-light:   #fcd9cb;
    --wh-salmon-pale:    #feeee8;
    --wh-salmon-deep:    #e8a88e;
    --wh-cream:          #FAF6F2;
    --wh-charcoal:       #2A2A2A;
    --wh-white:          #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body:    'Cormorant Garamond', 'Garamond', serif;
    --font-sans:    'Montserrat', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --header-height: 90px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--wh-cream);
    background-color: var(--wh-teal-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    color: var(--wh-salmon);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--wh-salmon-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   BACKGROUND – Subtle wine texture
   ============================================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(57, 82, 86, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(248, 196, 175, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(74, 106, 111, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Grain overlay for texture */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: linear-gradient(
        180deg,
        rgba(30, 45, 48, 0.95) 0%,
        rgba(30, 45, 48, 0.85) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(248, 196, 175, 0.15);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---- Logo Area ---- */
.site-branding {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-logo {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.site-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--wh-cream);
    line-height: 1.2;
}

.site-title .dot-studio {
    color: var(--wh-salmon);
}

/* ---- Navigation (placeholder) ---- */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-placeholder {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 246, 238, 0.35);
    padding: 10px 20px;
    border: 1px dashed rgba(248, 196, 175, 0.2);
    border-radius: 4px;
}

.nav-placeholder svg {
    opacity: 0.4;
}

/* ============================================================
   MAIN CONTENT – Coming Soon
   ============================================================ */
.site-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: calc(var(--header-height) + 60px) 40px 60px;
}

.coming-soon-container {
    text-align: center;
    max-width: 720px;
    animation: fadeInUp 1.2s ease-out both;
}

/* Decorative line */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wh-salmon), transparent);
}

.ornament-diamond {
    width: 8px;
    height: 8px;
    background: var(--wh-salmon);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Heading */
.coming-soon-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--wh-cream);
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 10px;
}

.coming-soon-title .accent {
    color: var(--wh-salmon);
    font-style: italic;
}

/* Subtitle */
.coming-soon-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 300;
    color: rgba(250, 246, 238, 0.7);
    letter-spacing: 0.03em;
    margin-bottom: 50px;
    line-height: 1.5;
}

/* Divider */
.section-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wh-salmon-light), transparent);
    margin: 0 auto 50px;
}

/* Contact section */
.contact-section {
    margin-bottom: 20px;
}

.contact-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 246, 238, 0.45);
    margin-bottom: 16px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--wh-salmon);
    padding: 14px 32px;
    border: 1px solid rgba(248, 196, 175, 0.3);
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 196, 175, 0.08), transparent);
    transition: left 0.6s ease;
}

.contact-email:hover {
    border-color: var(--wh-salmon);
    color: var(--wh-salmon-light);
    box-shadow: 0 0 30px rgba(248, 196, 175, 0.1);
}

.contact-email:hover::before {
    left: 100%;
}

.contact-email svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 28px 40px;
    border-top: 1px solid rgba(248, 196, 175, 0.1);
    background: rgba(30, 45, 48, 0.5);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(250, 246, 238, 0.4);
}

.footer-text a {
    color: var(--wh-salmon);
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--wh-salmon-light);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Staggered animation for child elements */
.coming-soon-container .ornament {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.coming-soon-container .coming-soon-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.coming-soon-container .coming-soon-subtitle {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.coming-soon-container .section-divider {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.coming-soon-container .contact-section {
    animation: fadeInUp 0.8s ease-out 1.0s both;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 75px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .site-logo {
        width: 42px;
        height: 42px;
    }

    .site-title {
        font-size: 1.25rem;
    }

    .nav-placeholder {
        font-size: 0.65rem;
        padding: 8px 14px;
    }

    .nav-placeholder span {
        display: none;
    }

    .site-main {
        padding: calc(var(--header-height) + 40px) 24px 40px;
    }

    .contact-email {
        font-size: 1rem;
        padding: 12px 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-branding {
        gap: 12px;
    }

    .site-title {
        font-size: 1.05rem;
    }

    .ornament-line {
        width: 35px;
    }
}
