* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #FAF7F0;
}

body,
.nav-logo {
    font-family: 'Lora', serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease,
        transform 6s linear;
}

.slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    color: white;
}

.band1 {
    width: 100%;
    min-height: 70vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    text-align: right;
    align-items: flex-start;
    padding-top: 4rem;
    padding: clamp(2rem, 5vw, 6rem) 1rem;
    position: relative;
}

.band1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(197, 155, 155, 0.199);
}

.band2 {
    width: 100%;
    min-height: 70vh;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    max-width: 1500px;
    color: white;
    width: min(90%, 1500px);
    position: relative;
    z-index: 1;
}

.band-quote {
    width: 100%;
    min-height: 50vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 6rem 2rem;

    text-align: center;
}

.content-quote {
    max-width: 900px;
    margin: auto;
}

.content-quote h1 {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    text-shadow: none;
    padding: 2rem;
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
}

h1 {
    font-size: clamp(2rem, 6vw, 5rem);
    text-shadow: 3px 3px 8px white;
    padding-bottom: 20px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    padding-bottom: 20px;
}

h3 {
    color: green;
    padding-bottom: 10px;
    font-weight: 400;
    font-style: normal;
}

p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    font-family: 'Lora', serif;
    letter-spacing: 0.2px;
}

.locations-section {
    width: min(95%, 1400px);
    margin: 4rem auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e2f;
}

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 1.2rem 0;
    z-index: 1000;

    transition:
        background 0.3s ease,
        padding 0.3s ease;

    background: transparent;
}

.navbar.scrolled {
    background: rgba(173, 174, 143, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
}

.nav-container {
    width: min(90%, 1300px);
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    color: white;
    text-decoration: none;

    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* VEGABURGER */

.vegaburger {
    display: none;

    width: 35px;
    height: 28px;

    position: relative;
    cursor: pointer;

    z-index: 2000;
}

.vegaburger span {
    position: absolute;

    width: 100%;
    height: 4px;

    background: white;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.vegaburger span:nth-child(1) {
    top: 0;
}

.vegaburger span:nth-child(2) {
    top: 12px;
}

.vegaburger span:nth-child(3) {
    top: 24px;
}

.vegaburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.vegaburger.active span:nth-child(2) {
    opacity: 0;
}

.vegaburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
}

/* CARDS */

.cards-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    width: min(90%, 1200px);
    margin: 4rem auto;

    align-items: stretch;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 16px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    min-height: 280px;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    gap: 1rem;

    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card h2 {
    margin-bottom: 1rem;
    color: #2c3e2f;
}

.card p {
    color: #555;
}

.card::before,
.card::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: #d4af37;
    border-style: solid;
    opacity: 0.7;
}

.card::before {
    top: 12px;
    left: 12px;
    border-width: 3px 0 0 3px;
}

.card::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 3px 3px 0;
}

/* TEAM SECTION */

.team-section {
    padding: 5rem 2rem;
    background: #f7f7f2;
}

.team-title {
    text-align: center;
    margin-bottom: 3rem;
}

.team-slider {
    display: flex;
    gap: 2rem;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    padding-bottom: 1rem;
}

.team-slider::-webkit-scrollbar {
    height: 10px;
}

.team-slider::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 20px;
}

.team-card {
    min-width: 280px;
    background: white;

    border-radius: 20px;
    padding: 2rem;

    text-align: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    scroll-snap-align: start;

    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 140px;
    height: 140px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 1.5rem;

    border: 4px solid #f0f0f0;
}

.team-card h3 {
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
}

/* LINKS */

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/* FOOTER */

.footer {
    background: #1A1410;
    color: white;

    padding: 4rem 2rem;
}

.footer-container {
    width: min(90%, 1200px);

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 3rem;

    align-items: start;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #d1d1d1;
    line-height: 1.8;
}

.footer-logo {
    width: 180px;
    max-width: 100%;
}

/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* LOCATION CARDS */

.location-card h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    color: #2c3e2f;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info p {
    margin: 0;
    padding-top: 0.75rem;

    border-top: 1px solid rgba(0,0,0,0.08);

    font-size: 1rem;
    line-height: 1.5;

    color: #555;
}

.contact-name {
    font-weight: 600;
    color: #2c3e2f;
}

.contact-phone {
    font-weight: 500;
}

.contact-email {
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 0.95rem;
}

/* MOBILE */

@media (max-width: 768px) {
    .hero,
    .band1,
    .band2,
    .band-quote {
        min-height: 50vh;
        padding: 2rem 1rem;
        text-align: center;
        justify-content: center;
    }

    .band1 {
        background-position: right center;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 3rem;
        text-align: left;
    }

    .band1 .content {
        width: 100%;
        max-width: 400px;
    }

    .band1 h2 {
        font-size: 1.8rem;
    }

    .band1 h3 {
        font-size: 1rem;
    }

    .content,
    .content-quote {
        max-width: 100%;
    }

    .cards-section {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .vegaburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem 0;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        letter-spacing: 0.3px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .location-card h2 {
        font-size: 1.3rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }
}