/**
 * Island Tiki Huts — Location Landing Page Styles
 */

/* -------------------------------------------------- */
/* Variables                                          */
/* -------------------------------------------------- */
:root {
    --ith-primary:    #c28840;
    --ith-dark:       #1a1a1a;
    --ith-light:      #f9f5ef;
    --ith-white:      #ffffff;
    --ith-gray:       #666666;
    --ith-radius:     8px;
    --ith-shadow:     0 4px 24px rgba(0, 0, 0, .08);
    --ith-max-width:  1200px;
    --ith-font:       inherit;
}

/* -------------------------------------------------- */
/* Shared                                             */
/* -------------------------------------------------- */
.ith-landing {
    font-family: var(--ith-font);
    color: var(--ith-dark);
    line-height: 1.7;
}

.ith-container {
    max-width: var(--ith-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.ith-section {
    padding: 80px 0;
}

.ith-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.ith-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--ith-gray);
}

/* -------------------------------------------------- */
/* Buttons                                            */
/* -------------------------------------------------- */
.ith-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--ith-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all .25s ease;
    cursor: pointer;
}

.ith-btn--primary {
    background: var(--ith-primary);
    color: var(--ith-white);
}
.ith-btn--primary:hover {
    background: #a97330;
    color: var(--ith-white);
}

.ith-btn--secondary {
    background: transparent;
    color: var(--ith-primary);
    border: 2px solid var(--ith-primary);
}
.ith-btn--secondary:hover {
    background: var(--ith-primary);
    color: var(--ith-white);
}

/* -------------------------------------------------- */
/* Hero                                               */
/* -------------------------------------------------- */
.ith-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1e0f 100%);
    color: var(--ith-white);
    overflow: hidden;
}

.ith-hero__overlay {
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    opacity: .25;
}

.ith-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 24px;
    max-width: 820px;
}

.ith-hero__tagline {
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ith-primary);
    margin-bottom: 12px;
}

.ith-hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ith-hero__subtitle {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 100%;
    text-align: center;
}

.ith-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* -------------------------------------------------- */
/* Intro                                              */
/* -------------------------------------------------- */
.ith-intro {
    background: var(--ith-white);
}

.ith-intro p {
    text-align: left;
    max-width: 100%;
    font-size: 1.05rem;
}

/* -------------------------------------------------- */
/* Services grid                                      */
/* -------------------------------------------------- */
.ith-services {
    background: var(--ith-light);
}

.ith-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.ith-service-card {
    background: var(--ith-white);
    border-radius: var(--ith-radius);
    padding: 36px 28px;
    box-shadow: var(--ith-shadow);
    transition: transform .2s ease;
}
.ith-service-card:hover {
    transform: translateY(-4px);
}

.ith-service-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.ith-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--ith-dark);
}

.ith-service-card p {
    text-align: left;
    font-size: .95rem;
    color: var(--ith-gray);
    margin-bottom: 12px;
}

.ith-service-card a {
    color: var(--ith-primary);
    font-weight: 600;
    text-decoration: none;
}
.ith-service-card a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* Why Us                                             */
/* -------------------------------------------------- */
.ith-why-us {
    background: var(--ith-white);
}

.ith-why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.ith-why-item {
    text-align: center;
    padding: 24px;
}

.ith-why-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--ith-primary);
}

.ith-why-item p {
    font-size: .95rem;
    text-align: center;
}

/* -------------------------------------------------- */
/* Areas served                                       */
/* -------------------------------------------------- */
.ith-areas {
    background: var(--ith-light);
}

.ith-areas__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.ith-areas__list li {
    background: var(--ith-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* -------------------------------------------------- */
/* CTA                                                */
/* -------------------------------------------------- */
.ith-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1e0f 100%);
    color: var(--ith-white);
    text-align: center;
}

.ith-cta h2 {
    color: var(--ith-white);
}

.ith-cta p {
    color: #cccccc;
}

.ith-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 32px 0 16px;
}

.ith-cta__hours {
    font-size: .9rem;
    color: #999999;
}

/* -------------------------------------------------- */
/* Map                                                */
/* -------------------------------------------------- */
.ith-map {
    background: var(--ith-white);
    padding-bottom: 0;
}

.ith-map__embed {
    margin-top: 24px;
    border-radius: var(--ith-radius) var(--ith-radius) 0 0;
    overflow: hidden;
}

.ith-map__embed iframe {
    display: block;
}

/* -------------------------------------------------- */
/* Responsive                                         */
/* -------------------------------------------------- */
@media (max-width: 768px) {
    .ith-section {
        padding: 48px 0;
    }

    .ith-hero {
        min-height: 420px;
    }

    .ith-hero__title {
        font-size: 1.8rem;
    }

    .ith-services__grid {
        grid-template-columns: 1fr;
    }
}
