/* ===========================================
   SECTIONS & CONTENT STYLES
   =========================================== */

/* Material Symbols Icons */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    display: inline-block;
    font-size: 48px !important;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 48;
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Noto Serif Display', serif;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--transition-ease);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-duration) var(--transition-ease);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 18, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-duration) var(--transition-ease);
    color: #ffffff;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

/* Promo Section */
.promos-section {
    background-color: #ffffff;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.promo-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-duration) var(--transition-ease);
    display: flex;
    flex-direction: column;
}

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

.promo-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-content h3 {
    font-family: 'Noto Serif Display', serif;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.promo-content p {
    color: #333;
    margin-bottom: 20px;
    flex-grow: 1;
}

.promo-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.promo-price .original {
    text-decoration: line-through;
    font-size: 1rem;
    color: #999;
    margin-right: 10px;
}

/* Social Section */
.social-section {
    position: relative;
    color: #ffffff;
    padding: 80px 20px;
    overflow: hidden;
}

.social-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -2;
}

.social-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.7;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 42, 0.6);
    z-index: -1;
}

.social-section h2 {
    font-family: 'Noto Serif Display', serif;
    color: #ffffff;
    margin-bottom: 15px;
}

.social-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.social-card p {
    color: rgba(255, 255, 255, 0.85);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all var(--transition-duration) var(--transition-ease);
    backdrop-filter: blur(10px);
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--bone);
    transform: translateY(-5px);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: transform var(--transition-duration) var(--transition-ease);
}

.social-card:hover .social-icon {
    transform: scale(1.2);
}

.social-card h3 {
    font-family: 'Noto Serif Display', serif;
    color: #ffffff;
    margin-bottom: 10px;
}

.social-card a {
    color: var(--bone);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: all var(--transition-duration) var(--transition-ease);
}

.social-card a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Contact Form Card */
.form-card {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Contact Form */
.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    font-family: 'Noto Sans', sans-serif;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d0d0d0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    background-color: rgba(255, 255, 255, 0.95);
    transition: border-color var(--transition-duration) var(--transition-ease);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(105, 143, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    font-family: 'Noto Sans', sans-serif;
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-duration) var(--transition-ease);
}

.form-submit:hover {
    background-color: #556a2f;
    transform: translateY(-2px);
}

.form-submit:active {
    transform: translateY(0);
}

/* Reviews Section */
.reviews-section {
    background-color: #ffffff;
}

.reviews-section h2 {
    font-family: 'Noto Serif Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--light-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    width: fit-content;
    margin: 0 auto 15px auto;
}

.google-badge svg {
    flex-shrink: 0;
}

.reviews-carousel {
    position: relative;
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-duration) var(--transition-ease);
    padding: 0;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-btn:hover svg {
    stroke: #ffffff;
}

.reviews-track {
    flex: 1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-duration) var(--transition-ease);
    padding: 25px;
    text-align: center;
    flex-shrink: 0;
    min-width: 280px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

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

.review-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-content h4 {
    font-family: 'Noto Serif Display', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    color: #FFD700;
    font-size: 1.2rem;
}

.review-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline;
    text-decoration: underline;
    transition: color var(--transition-duration) var(--transition-ease);
}

.review-card:hover .read-more {
    color: var(--primary-color);
}

/* Map Section */
.map-container {
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.map-viewer {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e0e0e0;
    position: relative;
}

.map-image {
    display: block;
    user-select: none;
    cursor: grab;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-image.grabbing {
    cursor: grabbing;
}

/* Mobile map pan container for screens smaller than 768px */
@media (max-width: 768px) {
    .map-viewer {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .map-viewer {
        height: 300px;
        overflow: auto;
        overflow-x: auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .map-viewer.panning-mode .map-image {
        width: 230vw;
        height: auto;
        object-fit: contain;
        display: block;
    }
}

.map-hint {
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #666;
    opacity: 0;
    transition: opacity var(--transition-duration) var(--transition-ease);
    pointer-events: none;
}

.map-hint.visible {
    opacity: 1;
    pointer-events: auto;
}

.map-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .reviews-carousel {
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .review-card {
        min-width: 260px;
        padding: 20px;
    }

    .review-image {
        width: 70px;
        height: 70px;
    }

    .google-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .reviews-carousel {
        gap: 10px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .reviews-track {
        grid-auto-columns: 1fr;
        max-width: calc(100vw - 120px);
        gap: 15px;
    }

    .review-card {
        min-width: calc(100vw - 120px);
        max-width: calc(100vw - 120px);
        padding: 15px;
    }

    .review-image {
        width: 60px;
        height: 60px;
    }

    .review-content h4 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}