/* Font Import - Cygre Font Family */
@font-face {
    font-family: 'Cygre';
    src: url('fonts/Cygre-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cygre';
    src: url('fonts/Cygre-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cygre';
    src: url('fonts/Cygre-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --noir-black: #0A0A0A;
    --deep-gray: #1A1A1A;
    --charcoal: #242424;
    --gold: #B8945F;
    --gold-bright: #D4AF7A;
    --cream: #F8F8F8;
    --shadow: rgba(0, 0, 0, 0.8);
}

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

body {
    font-family: 'Cygre', 'Futura', 'Helvetica Neue', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: var(--noir-black);
    color: var(--cream);
}

/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bar_image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: grayscale(0%) brightness(0.8);
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 26, 0.65) 0%,
        rgba(10, 10, 10, 0.75) 50%,
        rgba(10, 10, 10, 0.80) 100%
    );
    z-index: 1;
}

/* Film Grain Effect */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="6.5" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    pointer-events: none;
}

/* Art Deco Corner Elements */
.deco-corners {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.deco-corners svg {
    position: absolute;
    width: 80px;
    height: 80px;
    color: var(--gold);
    opacity: 0.6;
    animation: fadeIn 2s ease-out;
}

.corner-tl {
    top: 30px;
    left: 30px;
}

.corner-tr {
    top: 30px;
    right: 30px;
}

.corner-bl {
    bottom: 30px;
    left: 30px;
}

.corner-br {
    bottom: 30px;
    right: 30px;
}

/* Main Container */
.container {
    position: relative;
    z-index: 4;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.content {
    text-align: center;
    max-width: 1000px;
    animation: fadeInUp 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Geometric Dividers (Art Deco) */
.geo-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.geo-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.geo-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 15px rgba(184, 148, 95, 0.5);
}

.geo-divider.top {
    margin-bottom: 60px;
}

.geo-divider.bottom {
    margin-top: 60px;
    margin-bottom: 50px;
}

/* Brand Section */
.brand {
    margin: 0;
}

.title {
    font-size: clamp(4rem, 12vw, 9rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 700;
    margin: 0;
    line-height: 1;
    text-shadow: 
        0 0 40px rgba(184, 148, 95, 0.3),
        0 2px 20px rgba(0, 0, 0, 0.9);
    animation: subtleGlow 4s ease-in-out infinite alternate;
}

.separator {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(184, 148, 95, 0.4);
}

.subtitle {
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 300;
    margin: 0;
    line-height: 1;
}

/* Status Section */
.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.status-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(184, 148, 95, 0.4);
}

.status-text {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 400;
    margin: 0;
    padding: 0 20px;
    position: relative;
    text-shadow: 
        0 0 10px rgba(212, 175, 122, 0.8),
        0 0 20px rgba(212, 175, 122, 0.6),
        0 0 30px rgba(212, 175, 122, 0.4),
        0 0 40px rgba(212, 175, 122, 0.2);
    animation: flicker 4s infinite;
}

/* Tagline */
.tagline {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
    letter-spacing: 0.3em;
    color: var(--cream);
    opacity: 0.6;
    margin-top: 40px;
    font-weight: 300;
    text-transform: uppercase;
    animation: fadeIn 2.5s ease-out 1.5s backwards;
}

/* Bottom Accent */
.bottom-accent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    pointer-events: none;
}

.accent-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(184, 148, 95, 0.3);
    opacity: 0.5;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes subtleGlow {
    from {
        text-shadow: 
            0 0 30px rgba(184, 148, 95, 0.2),
            0 2px 20px rgba(0, 0, 0, 0.9);
    }
    to {
        text-shadow: 
            0 0 50px rgba(184, 148, 95, 0.4),
            0 2px 20px rgba(0, 0, 0, 0.9);
    }
}

@keyframes flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px rgba(212, 175, 122, 0.8),
            0 0 20px rgba(212, 175, 122, 0.6),
            0 0 30px rgba(212, 175, 122, 0.4),
            0 0 40px rgba(212, 175, 122, 0.2);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.6;
        text-shadow: 
            0 0 5px rgba(212, 175, 122, 0.4),
            0 0 10px rgba(212, 175, 122, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .deco-corners svg {
        width: 70px;
        height: 70px;
    }
    
    .title {
        letter-spacing: 0.06em;
    }
    
    .subtitle {
        letter-spacing: 0.3em;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 30px;
    }
    
    .deco-corners svg {
        width: 60px;
        height: 60px;
    }
    
    .corner-tl,
    .corner-tr {
        top: 20px;
    }
    
    .corner-bl,
    .corner-br {
        bottom: 20px;
    }
    
    .corner-tl,
    .corner-bl {
        left: 20px;
    }
    
    .corner-tr,
    .corner-br {
        right: 20px;
    }
    
    .title {
        letter-spacing: 0.05em;
    }
    
    .subtitle {
        letter-spacing: 0.25em;
    }
    
    .separator {
        height: 50px;
        margin: 25px auto;
    }
    
    .geo-divider {
        gap: 15px;
        margin: 40px 0;
    }
    
    .geo-line {
        width: 80px;
    }
    
    .geo-divider.top {
        margin-bottom: 50px;
    }
    
    .geo-divider.bottom {
        margin-top: 50px;
        margin-bottom: 40px;
    }
    
    .status {
        gap: 20px;
    }
    
    .status-line {
        width: 60px;
    }
    
    .status-text {
        letter-spacing: 0.25em;
    }
    
    .tagline {
        margin-top: 30px;
        letter-spacing: 0.2em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }
    
    .deco-corners svg {
        width: 50px;
        height: 50px;
    }
    
    .corner-tl {
        top: 15px;
        left: 15px;
    }
    
    .corner-tr {
        top: 15px;
        right: 15px;
    }
    
    .corner-bl {
        bottom: 15px;
        left: 15px;
    }
    
    .corner-br {
        bottom: 15px;
        right: 15px;
    }
    
    .title {
        letter-spacing: 0.04em;
    }
    
    .subtitle {
        letter-spacing: 0.2em;
    }
    
    .separator {
        height: 40px;
        margin: 20px auto;
    }
    
    .geo-divider {
        gap: 12px;
        margin: 30px 0;
    }
    
    .geo-line {
        width: 60px;
    }
    
    .geo-divider.top {
        margin-bottom: 40px;
    }
    
    .geo-divider.bottom {
        margin-top: 40px;
        margin-bottom: 30px;
    }
    
    .status {
        gap: 15px;
    }
    
    .status-line {
        width: 40px;
    }
    
    .status-text {
        letter-spacing: 0.2em;
        padding: 0 10px;
    }
    
    .tagline {
        margin-top: 25px;
        letter-spacing: 0.15em;
    }
}

