:root {
    --bg-color: #110e0c; /* Very dark espresso/charcoal */
    --charred-wood: #2c1e16; /* Dark wood/burnt logo text */
    --text-primary: #eaddcf; /* Aged paper/parchment */
    --text-secondary: #a39585; /* Faded ink */
    --accent-amber: #d97706; /* Bourbon amber */
    --raw-oak: #d4a373; /* Light barrel wood */
    --distillery-copper: #b87333; /* Copper still */
    --accent-wine: #831843; /* Deep burgundy wine */
    --aged-iron: #5c5e60; /* Retail shelving/barrel hoops */
    --card-bg: rgba(28, 25, 23, 0.7);
    --border-color: rgba(217, 119, 6, 0.2);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: "Merriweather", serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    /* Subtle noise texture for a vintage feel */
    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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Ambient Glowing Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    animation: breathe 8s infinite alternate ease-in-out;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        var(--accent-amber) 0%,
        transparent 70%
    );
    top: -10%;
    left: -10%;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        var(--accent-wine) 0%,
        transparent 70%
    ); /* Deep burgundy */
    bottom: -10%;
    right: -10%;
    animation-delay: -4s;
}

@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}

/* Main Content Card */
.container {
    width: 100%;
    max-width: 550px;
    padding: 20px;
    z-index: 10;
}

.content-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 4px; /* Harder corners for vintage feel */
    padding: 50px 40px;
    text-align: center;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: floatIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.6s;
}

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

/* Logo Treatment */
.logo-container {
    margin-bottom: 30px;
}

.logo-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, #78350f, #f59e0b, #78350f);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Shine effect crossing the ring */
.logo-ring::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.brand-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid #292524;
}

/* Typography */
.title {
    font-family: "Rye", cursive;
    font-size: 2.5rem;
    color: var(--accent-amber);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px var(--charred-wood);
    letter-spacing: 2px;
}

.subtitle {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.subtitle .text {
    font-size: 1rem;
    display: inline-block;
    width: 95px;
    text-align: center;
}

.subtitle .bullet {
    font-size: 0.3rem;
    opacity: 0.6;
}

/* Vintage Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 35px 0;
    opacity: 0.6;
}

.divider .diamond {
    color: var(--accent-amber);
    font-size: 0.6rem;
}

.divider .line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-amber),
        transparent
    );
    margin: 0 15px;
}

/* Info Section */
.info-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    padding: 0 10px;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-amber);
    background: rgba(0, 0, 0, 0.3);
}

.info-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted var(--text-secondary);
}

.info-item a:hover {
    color: var(--accent-amber);
    border-bottom-color: var(--accent-amber);
}

/* Socials */
.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent-amber);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.2);
    border-color: var(--accent-amber);
}

/* Responsiveness */
@media (max-width: 480px) {
    .content-card {
        padding: 40px 20px;
    }
    .title {
        font-size: 2rem;
    }
    .info-item {
        font-size: 0.85rem;
    }
}
.subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.subtitle .bullet {
    color: var(--accent-amber);
    font-size: 0.6rem;
    opacity: 0.8;
}

/* Loader Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-diamond {
    color: var(--accent-amber);
    font-size: 2rem;
    animation: spin 2s linear infinite, glow 1.5s ease-in-out infinite alternate;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px var(--accent-amber);
    }
    100% {
        text-shadow: 0 0 20px var(--accent-amber), 0 0 30px var(--accent-amber);
    }
}
