/* =========================================
   Dugan's Legendary Den — Brand Stylesheet
   Color Palette:
     Burnt Umber:  #8B4513
     Dark Brown:   #3E2723
     Medium Brown: #5D4037
     Cream:        #FFF8F0
     Gold Accent:  #C9A84C
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #3E2723;
    color: #FFF8F0;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ---- Background texture overlay ---- */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Top Accent Bar ---- */
.top-accent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #C9A84C, #8B4513);
    z-index: 100;
}

/* ---- Shared Section Layout ---- */
.section,
.hero,
.footer {
    position: relative;
    z-index: 1;
}

.section-inner,
.hero-inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- Section Headings ---- */
.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    color: #C9A84C;
    margin-bottom: 1rem;
}

/* ---- Divider ---- */
.divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B4513, transparent);
    position: relative;
    margin: 0 auto 2rem;
}

.divider-section {
    margin-bottom: 2.5rem;
}

.divider-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: #C9A84C;
}

/* ==============================
   HERO
   ============================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 6rem 0 4rem;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 280px;
    max-width: 80vw;
    height: auto;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

/* Tagline */
.tagline {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.6rem;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 248, 240, 0.7);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

/* Hero divider */
.hero .divider {
    margin-bottom: 2.5rem;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

/* Social Buttons */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* TikTok */
.social-btn.tiktok {
    background-color: #8B4513;
    color: #FFF8F0;
    border: 2px solid #8B4513;
}

.social-btn.tiktok:hover {
    background-color: transparent;
    border-color: #C9A84C;
    color: #C9A84C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Instagram */
.social-btn.instagram {
    background-color: transparent;
    color: #FFF8F0;
    border: 2px solid #8B4513;
}

.social-btn.instagram:hover {
    background-color: #8B4513;
    border-color: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Email */
.social-btn.email {
    background-color: transparent;
    color: #C9A84C;
    border: 2px solid #5D4037;
}

.social-btn.email:hover {
    background-color: #5D4037;
    color: #FFF8F0;
    border-color: #5D4037;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 64, 55, 0.4);
}

/* ==============================
   ABOUT
   ============================== */
.about {
    padding: 5rem 0;
    background-color: rgba(93, 64, 55, 0.15);
}

.about-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 248, 240, 0.9);
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.about-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.case-img-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

/* ==============================
   UPCOMING SHOWS
   ============================== */
.shows {
    padding: 5rem 0;
}

.shows-subtitle {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 248, 240, 0.7);
    margin-bottom: 2.5rem;
}

.shows-schedule {
    text-align: center;
}

.schedule-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* ==============================
   PAYMENTS
   ============================== */
.payments {
    padding: 4rem 0 5rem;
    background-color: rgba(93, 64, 55, 0.15);
}

.payment-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
    margin: 0 auto;
}

.pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pay-btn .social-icon {
    width: 20px;
    height: 20px;
}

.pay-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.pay-btn:hover::before {
    left: 100%;
}

/* Venmo */
.pay-btn.venmo {
    background-color: transparent;
    color: #3D95CE;
    border: 2px solid #3D95CE;
}

.pay-btn.venmo:hover {
    background-color: #3D95CE;
    color: #FFF8F0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 149, 206, 0.3);
}

/* Cash App */
.pay-btn.cashapp {
    background-color: transparent;
    color: #00D632;
    border: 2px solid #00D632;
}

.pay-btn.cashapp:hover {
    background-color: #00D632;
    color: #FFF8F0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 214, 50, 0.3);
}

/* Zelle */
.pay-btn.zelle {
    background-color: transparent;
    color: #6D1ED4;
    border: 2px solid #6D1ED4;
    cursor: default;
}

.pay-btn.zelle .btn-text {
    user-select: all;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
}

.footer p {
    font-size: 0.75rem;
    color: #8B7355;
    letter-spacing: 0.05em;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==============================
   RESPONSIVE
   ============================== */

/* --- Small phones --- */
@media (max-width: 480px) {
    .logo {
        width: 220px;
    }

    .tagline {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .social-links {
        max-width: 280px;
    }

    .social-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

/* --- Tablets and up --- */
@media (min-width: 768px) {
    .logo {
        width: 340px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    /* About: text left, booth image right */
    .about-top {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .about-text {
        flex: 1;
    }

    .about-booth {
        flex: 1;
    }

    /* Display cases: 2 columns */
    .about-cases {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* --- Large desktop --- */
@media (min-width: 1200px) {
    .section-inner,
    .hero-inner {
        max-width: 1060px;
    }
}
