/* ============================================
   CSS Variables - Texas Hill Country Palette
   ============================================ */
:root {
    --burnt-orange: #C85A2E;
    --sage-green: #8B9A7E;
    --limestone-beige: #E8DCC4;
    --warm-white: #FFFEF9;
    --charcoal: #2C2C2C;
    --cedar-brown: #6B4423;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--charcoal);
    background-color: var(--warm-white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

.section__title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: var(--cedar-brown);
    margin-bottom: 2rem;
    text-align: center;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--warm-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-img {
    height: 100px;
}

.nav__menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    color: var(--charcoal);
    font-weight: 500;
}

.nav__link:hover {
    color: var(--burnt-orange);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--cedar-brown) 100%);
    color: var(--warm-white);
    text-align: center;
    margin-top: 118px;
}

.hero__content {
    padding: 0 2rem;
}

.hero__title {
    font-family: Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.5rem;
    font-weight: 300;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--limestone-beige);
}

.about__text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.about__text p {
    margin-bottom: 1.5rem;
}

/* ============================================
   Gallery / Carousel Section
   ============================================ */
.gallery {
    background: var(--charcoal);
    color: var(--warm-white);
}

.carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel__container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel__track {
    display: flex;
    position: relative;
}

.carousel__slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel__slide.active {
    position: relative;
    opacity: 1;
}

.carousel__slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel__btn:hover {
    background: var(--burnt-orange);
    color: var(--warm-white);
}

.carousel__btn--prev {
    left: 2rem;
}

.carousel__btn--next {
    right: 2rem;
}

.carousel__dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.carousel__dot.active {
    background: var(--burnt-orange);
}

/* ============================================
   Location Section
   ============================================ */
.location {
    background: var(--warm-white);
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location__address {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.location__link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--burnt-orange);
    color: var(--warm-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
}

.location__link:hover {
    background: #A0421E;
}

.location__map {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.location__map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ============================================
   Call to Action Section
   ============================================ */
.cta {
    background: var(--sage-green);
    color: var(--warm-white);
    text-align: center;
}

.cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta__btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--burnt-orange);
    color: var(--warm-white);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
}

.cta__btn:hover {
    background: #A0421E;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--charcoal);
    color: var(--limestone-beige);
    padding: 3rem 0 1.5rem;
}

.footer__content {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__text {
    margin-bottom: 0.5rem;
}

.footer__bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .nav__menu {
        gap: 1rem;
    }

    .nav__link {
        font-size: 0.9rem;
    }

    .logo-img {
        height: 70px;
    }

    .hero {
        margin-top: 88px;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .carousel__slide img {
        height: 400px;
    }

    .carousel__btn {
        width: 40px;
        height: 40px;
    }

    .carousel__btn--prev {
        left: 1rem;
    }

    .carousel__btn--next {
        right: 1rem;
    }

    .location__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location__map iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container,
    .container-fluid {
        padding: 0 1rem;
    }

    .nav {
        padding: 0.75rem 1rem;
    }

    .nav__menu {
        gap: 0.75rem;
    }

    .nav__link {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 60px;
    }

    .hero {
        margin-top: 76px;
        min-height: 300px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .carousel__slide img {
        height: 300px;
    }

    .carousel__btn--prev {
        left: 0.5rem;
    }

    .carousel__btn--next {
        right: 0.5rem;
    }

    .location__map iframe {
        height: 300px;
    }
}
