/**
 * Nova Oak Bar - Coming Soon Page
 * Mobile-First Responsive Design
 * Timeless & Classical Aesthetic
 */

/* ===================================================================
   CSS Reset & Base Styles
   =================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: inherit;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===================================================================
   Typography
   =================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 2rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.6rem;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 3rem;
    letter-spacing: 0.03em;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.5rem;
    color: #c0c0c0;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f0d77e;
}

/* ===================================================================
   Utilities
   =================================================================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 2rem auto;
}

.decorative-line-dark {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b7355, transparent);
    margin: 2rem auto 4rem;
}

/* ===================================================================
   Hero Section - Mobile First
   =================================================================== */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a url('../images/intro-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #d4af37;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Subscription Section */
.subscription-section {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.subscription-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.subscription-text {
    font-size: 1.4rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

/* Brevo Form Styles - Mobile First */
.sib-form-container {
    max-width: 100%;
    margin: 0 auto;
}

.sib-form-message-panel {
    font-size: 1.4rem;
    text-align: center;
    margin: 0 auto 2rem;
    padding: 1.2rem;
    border-radius: 8px;
    animation: slideDown 0.3s ease-out;
}

#error-message {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

#success-message {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.sib-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    font-size: 1.8rem;
}

#sib-container {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sib-form-block {
    padding: 0.8rem 0;
}

#EMAIL {
    width: 100%;
    padding: 1.4rem 1.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
    transition: all 0.3s ease;
}

#EMAIL:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#EMAIL::placeholder {
    color: #808080;
}

.sib-form-block__button {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    background: #000000;
    border-radius: 8px;
    padding: 1.4rem 2rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.sib-form-block__button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.sib-form-block__button:active {
    transform: translateY(0);
}

.sib-hide-loader-icon {
    display: none !important;
}

.input--hidden {
    display: none;
}

.entry__error {
    display: block;
    font-size: 1.3rem;
    color: #ff4d4d;
    margin-top: 0.5rem;
    padding: 0.5rem;
    text-align: left;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    animation: fadeIn 2s ease-out 1.5s both;
}

.scroll-indicator span {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #808080;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #d4af37, transparent);
    animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ===================================================================
   Gallery Section
   =================================================================== */

#gallery {
    padding: 8rem 2rem;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    font-size: 3.6rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay p {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ===================================================================
   Location Section
   =================================================================== */

#location {
    padding: 8rem 2rem;
    background: #1a1a1a;
}

.location-content {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.location-info {
    text-align: center;
}

.location-info h3 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 2rem;
}

.address {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hours {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.hours strong {
    color: #f5f5f5;
}

.contact-info {
    margin-top: 3rem;
}

.contact-info strong {
    color: #f5f5f5;
    font-size: 1.6rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-link {
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.map-container {
    width: 100%;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: rgba(26, 26, 26, 0.5);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    color: #808080;
    font-size: 1.6rem;
}

/* ===================================================================
   Footer
   =================================================================== */

footer {
    padding: 4rem 2rem 2rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
    opacity: 0.7;
}

.copyright {
    text-align: center;
    font-size: 1.3rem;
    color: #808080;
}

.copyright p {
    margin: 0;
}

/* ===================================================================
   Go to Top Button
   =================================================================== */

#go-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#go-top.show {
    opacity: 1;
    visibility: visible;
}

#go-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    color: #0a0a0a;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

#go-top a:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.arrow-up {
    font-size: 2rem;
    font-weight: bold;
}

/* ===================================================================
   Animations
   =================================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================================
   Responsive Design - Tablet (768px and up)
   =================================================================== */

@media only screen and (min-width: 768px) {
    h1 { font-size: 4.8rem; }
    h2 { font-size: 3.6rem; }

    .hero-title {
        font-size: 6rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.8rem;
    }

    .logo {
        max-width: 220px;
    }

    #sib-container {
        padding: 3rem 3.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .location-content {
        flex-direction: row;
        gap: 5rem;
    }

    .location-info {
        flex: 1;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .map-container {
        flex: 1;
        min-height: 400px;
    }

    .map-placeholder {
        height: 400px;
    }

    #go-top {
        bottom: 3rem;
        right: 3rem;
    }

    #go-top a {
        width: 60px;
        height: 60px;
    }

    .arrow-up {
        font-size: 2.4rem;
    }
}

/* ===================================================================
   Responsive Design - Desktop (1024px and up)
   =================================================================== */

@media only screen and (min-width: 1024px) {
    .hero-title {
        font-size: 7.2rem;
    }

    .hero-subtitle {
        font-size: 2.6rem;
    }

    .logo {
        max-width: 260px;
    }

    #sib-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    #gallery {
        padding: 10rem 2rem;
    }

    #location {
        padding: 10rem 2rem;
    }

    .section-title {
        font-size: 4.5rem;
    }
}

/* ===================================================================
   Responsive Design - Large Desktop (1440px and up)
   =================================================================== */

@media only screen and (min-width: 1440px) {
    .hero-title {
        font-size: 8rem;
    }

    .container {
        max-width: 1400px;
    }
}

/* ===================================================================
   Print Styles
   =================================================================== */

@media print {
    #go-top,
    .scroll-indicator {
        display: none;
    }
}
