@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --dark: #171717;
    --charcoal: #2b2b28;
    --gold: #E3B04B;
    --cream: #F1D6AB;
    --light: #F8F8F8;
    --text-dark: #2b2b28;
    --text-light: #ffffff;
    --max-width: 1100px;
    --radius: 12px;
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
iframe,
video {
    max-width: 100%;
    display: block;
}

#contact-top {
    background-color: var(--charcoal);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 8px 15px;
    font-size: 14px;
    text-align: center;
    flex-wrap: wrap;
}

#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 100%;
}

#navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px 10px;
    margin: 0;
    flex-wrap: wrap;
}

#navbar a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
}

#navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: var(--gold);
    transition: var(--transition);
}

#navbar a:hover {
    color: var(--gold);
}

#navbar a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('../sources/pops_dn1.jpg') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    width: 100%;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background-color: white;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-content {
    width: 100%;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    word-break: break-word;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 20px;
    font-weight: 300;
}

.highlight {
    color: var(--gold);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    max-width: 100%;
}

.btn-primary:hover {
    background-color: #d19c35;
    transform: translateY(-2px);
}

.section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    min-width: 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    word-break: break-word;
}

.center-text {
    max-width: 700px;
    margin: 0 auto 20px;
}

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

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

.bg-cream {
    background-color: var(--cream);
}

.bg-gold {
    background-color: var(--gold);
    color: var(--dark);
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.service-card {
    background: white;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    min-width: 0;
    width: 100%;
}

.service-card h3 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.5;
}

.service-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin: 10px 0 15px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.03);
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    width: 100%;
    min-width: 100%;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.9);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    padding: 0 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--dark);
}

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

#lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: var(--radius);
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    font-style: italic;
    min-width: 0;
}

.map-container {
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: solid 2px #d19c35;
    border-radius: var(--radius);
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
    word-break: break-word;
}

.footer {
    background: var(--charcoal);
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    width: 100%;
}

@media (max-width: 767px) {
    #navbar ul {
        gap: 12px;
        padding: 12px 8px;
    }

    #navbar a {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .carousel-image {
        height: 250px;
    }

    .carousel-btn {
        padding: 10px 12px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #navbar ul {
        gap: 40px;
    }
}