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

:root {
    --primary: #c3a372;
    /* Elegant gold/bronze */
    --bg-dark: #0f1115;
    --bg-card: rgba(25, 28, 33, 0.7);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* =========================================
   BASE STYLES (MOBILE FIRST)
   ========================================= */

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Glassmorphism utility */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
}

.lang-switcher select {
    background: rgba(25, 28, 33, 0.6);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    backdrop-filter: blur(5px);
    transition: border-color 0.3s ease;
}

.lang-switcher select:focus,
.lang-switcher select:hover {
    border-color: var(--primary);
}

.lang-switcher select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(15, 17, 21, 0.7), rgba(15, 17, 21, 0.9)), url('bg.jpg') center/cover fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    animation: fadeInDown 1s ease;
    color: #fff;
}

.hero p {
    font-size: 1.05rem;
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--text-muted);
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    font-size: 1rem;
}

.btn:hover {
    background: #d4b585;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(195, 163, 114, 0.3);
}

/* Closed Stamp */
.closed-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    border: 4px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    padding: 20px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5), inset 0 0 10px rgba(255,255,255,0.2);
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stamp-date {
    font-size: 0.55em;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Sections */
section {
    padding: 60px 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

/* Overview */
.overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

/* Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.img-container {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
}

.destination-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.08);
}

.photo-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 6px;
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.destination-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Activities */
.activities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.activity-tag {
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(195, 163, 114, 0.08);
    border: 1px solid rgba(195, 163, 114, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.activity-tag:hover {
    background: rgba(195, 163, 114, 0.15);
    transform: scale(1.05);
}

/* Location & Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info,
.location-info {
    padding: 30px;
    border-radius: 20px;
}

.contact-info h3,
.location-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p,
.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.contact-info strong,
.location-info strong {
    color: var(--text-main);
}

.contact-info a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary);
}

.icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Floating Share Sidebar - Mobile */
.share-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.share-btn {
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.share-btn.fb {
    background: #1877f2;
}

.share-btn.x {
    background: #000;
}

.share-btn.wa {
    background: #25d366;
}

.share-btn.email {
    background: #dd4b39;
}

/* Adjust footer margin on mobile to account for fixed bottom bar */
footer {
    text-align: center;
    padding: 30px 20px 80px 20px;
    /* Extra bottom padding for share bar */
    background: #08090b;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   TABLET & DESKTOP SCREENS
   ========================================= */

@media (min-width: 768px) {
    .lang-switcher {
        top: 20px;
        right: 30px;
    }

    .lang-switcher select {
        padding: 8px 15px;
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.25rem;
    }

    .btn {
        font-size: 1.1rem;
        padding: 15px 40px;
    }

    .closed-stamp {
        font-size: 2.2rem;
        padding: 30px 40px;
        max-width: 80%;
    }

    section {
        padding: 80px 8%;
    }

    .section-title {
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

    .overview p {
        font-size: 1.15rem;
    }

    .img-container {
        height: 280px;
    }

    .destination-content h3 {
        font-size: 1.8rem;
    }

    .destination-content p {
        font-size: 1.05rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
    }

    .activity-tag {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .contact-info,
    .location-info {
        padding: 40px;
    }

    .contact-info h3,
    .location-info h3 {
        font-size: 1.8rem;
    }

    .share-sidebar {
        top: 50%;
        left: 20px;
        bottom: auto;
        width: auto;
        flex-direction: column;
        transform: translateY(-50%);
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        border-top: none;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .share-btn:hover {
        transform: scale(1.1) translateX(5px);
    }

    footer {
        padding: 40px;
    }
}

@media (min-width: 992px) {
    section {
        padding: 100px 10%;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info,
    .location-info {
        padding: 50px;
    }

    .contact-info h3,
    .location-info h3 {
        font-size: 2rem;
    }

    .contact-info p,
    .location-info p {
        font-size: 1.1rem;
    }
}