/* Variables */
:root {
    --primary-gold: #C09A55;
    --primary-gold-hover: #A07F43;
    --primary-gold-transparent: rgba(192, 154, 85, 0.1);
    
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-light-tan: #F2ECE0;
    --bg-footer: #0f0f0f;
    
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --text-dark: #1f1f1f;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-standard: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gold {
    color: var(--primary-gold);
}

.text-dark {
    color: var(--text-dark);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
}

.btn:hover {
    letter-spacing: 2.2px;
}

/* Glass Sheen Sweep Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 80px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.btn:hover::before {
    left: 150%;
    transition: all 0.75s ease;
}

.btn-icon {
    gap: 0.5rem;
    position: relative;
    z-index: 2; /* keep content above background sheen */
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(192, 154, 85, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(192, 154, 85, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(192, 154, 85, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background-color: #222;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-dark:active {
    transform: translateY(-1px) scale(0.98);
}

/* Separator / Divider */
.separator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--primary-gold);
}

.separator.separator-dark {
    justify-content: center;
}

.separator .line {
    height: 1px;
    width: 60px;
    background-color: var(--primary-gold);
}

.separator .paw-icon {
    width: 24px;
    height: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-standard);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    transition: var(--transition-standard);
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-standard);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* offset for navbar */
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ember-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 580px;
    animation: fadeUp 1s ease;
    padding: 2rem 0;
}

.hero-logo-container {
    margin-bottom: 1.5rem;
}

.hero-mid-logo {
    height: 180px;
    width: auto;
}

.hero-welcome {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #C09A55;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
}

.welcome-line {
    height: 1px;
    width: 30px;
    background-color: #C09A55;
}

.welcome-paw {
    font-size: 0.9rem;
    margin-top: -2px;
}

.welcome-text {
    text-transform: uppercase;
}

.hero-title {
    font-size: 5.5rem;
    font-family: var(--font-heading);
    color: #F2ECE0; /* off-white cream color */
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-shop-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #C09A55;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.shop-line {
    height: 1px;
    width: 45px;
    background-color: #C09A55;
}

.hero-text {
    color: #F2ECE0;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-transform: uppercase;
}

.btn-gold-rect {
    background-color: #C09A55;
    color: #0a0a0a;
    border: 1px solid #C09A55;
    border-radius: 0; /* flat/rectangular button */
    padding: 0.9rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-standard);
}

.btn-gold-rect:hover {
    background-color: #A07F43;
    color: #0a0a0a;
    border-color: #A07F43;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(192, 154, 85, 0.4);
}

.btn-gold-rect:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(192, 154, 85, 0.2);
}

/* About Section */
.about {
    background-color: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.about-split {
    display: flex;
    min-height: 80vh;
    width: 100%;
}

.about-left {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-right {
    flex: 1;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-image: url('assets/about_right_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}



/* Menu Section (Featured Drinks) */
.menu {
    padding: 6rem 0;
    background-image: url('assets/menu_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.drink-card {
    background-color: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.drink-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.drink-image-container {
    height: 250px;
    overflow: hidden;
}

.drink-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drink-card:hover .drink-image-container img {
    transform: scale(1.1);
}

.drink-info {
    padding: 1.5rem;
    text-align: center;
}

.drink-info h4 {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.drink-info p {
    color: var(--primary-gold);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    transition: var(--transition-standard);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.1);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-gold);
    padding: 3rem 0;
    color: var(--text-dark);
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.coffee-icon {
    width: 64px;
    height: 64px;
    color: var(--bg-dark);
}

.cta-title {
    font-size: 1.8rem;
    line-height: 1.2;
}

/* Footer */
.footer {
    background-color: var(--bg-footer);
    padding: 5rem 0 2rem;
    border-top: 1px solid #222;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.footer-logo {
    height: 240px;
    width: auto;
}

.footer h4 {
    color: var(--primary-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer ul li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer ul li svg {
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer ul li a:hover {
    color: var(--primary-gold);
}

.social-icons {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

.footer-hours p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .about-split {
        flex-direction: column;
    }
    .about-right {
        padding: 4rem 5%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Add mobile menu later if needed */
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .separator {
        justify-content: center;
    }
    .cta-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .drinks-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}
