:root {
    --primary-color: #5D4037;
    /* Coffee/Tea Brown */
    --secondary-color: #D7CCC8;
    /* Cream/Milk */
    --accent-color: #388E3C;
    /* Fresh Green Leaf */
    --gold-color: #FFA000;
    /* Premium Gold */
    --text-dark: #212121;
    --text-light: #F5F5F5;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #FAFAFA;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between logo and name */
    text-decoration: none;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.brand-prefix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.brand-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-color);
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.brand:hover .brand-logo {
    transform: scale(1.1) rotate(-2deg);
}

.brand:hover .brand-prefix {
    /* color: #3E2723; */
    transform: scale(1.03);
}

.brand:hover .brand-suffix {
    /* color: #ffb907; */
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
    transform: scale(1.03);
    display: inline-block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-scroller {
    height: 400vh;
    /* Determines length of scroll animation */
    position: relative;
    z-index: 10;
}

.hero-sticky {
    height: 100vh;
    width: 100%;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gold-text {
    font-size: 5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4);
}

.btn:hover {
    background-color: #FFB300;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 160, 0, 0.6);
}

/* About Section */
.section {
    padding: 5rem 5%;
}

.about {
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -10px;
    left: 25%;
    background-color: var(--gold-color);
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-text {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.brand-statement {
    font-size: 1.3rem;
    color: var(--gold-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heritage-text p {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* Specialties Section */
.specialties {
    background-color: #FFFDD0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

/* #ambience img {
   height: 200px;
} */

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card p {
    color: #666;
    font-size: 0.9rem;
}

/* Location / Footer */
.location {
    background-color: var(--primary-color);
    color: #FFFDD0;
    text-align: center;
}

.location-content {
    max-width: 600px;
    margin: 0 auto;
}

.location h2 {
    color: #FFFDD0;
}

.location .section-title::before {
    background-color: #fffdd0c5;
}

.address {
    margin: 2rem 0;
    font-size: 1.1rem;
}

#phone {
    font-size: 1rem;
}

.map-btn {
    background-color: #FFFDD0;
    color: #4f3631;
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.map-btn:hover {
    background-color: #ffffff;
    color: #3e2723;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

footer {
    background-color: #4f3631;
    color: #9E9E9E;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .section {
        padding: 4rem 4%;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .gold-text {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .brand-logo {
        height: 55px;
    }

    .brand-prefix,
    .brand-suffix {
        font-size: 1.4rem;
    }

    .menu-toggle {
        display: block;
        color: var(--primary-color);
        font-size: 1.8rem;
    }

    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        backdrop-filter: blur(10px);
        gap: 1.5rem;
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        font-size: 1.2rem;
        display: block;
        padding: 5px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .gold-text {
        font-size: 3rem;
    }

    .section {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 4%;
    }

    .brand-logo {
        height: 45px;
    }

    .brand-text {
        gap: 0;
    }

    .brand-prefix,
    .brand-suffix {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .gold-text {
        font-size: 2.5rem;
        display: block;
        margin-top: 5px;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section {
        padding: 2.5rem 5%;
    }



    .about p {
        font-size: 1rem;
        text-align: center;
    }

    .card-image {
        height: 200px;
    }

    .location-content h2 {
        font-size: 1.8rem;
    }

    .address p {
        font-size: 1rem;
    }

    #phone {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}