/* ==================== */
/* CSS Variables & Reset */
/* ==================== */

:root {
    /* Colors - Warm Southeast Asian palette */
    --primary: #D4712B;
    --primary-dark: #B85A1F;
    --primary-light: #E89554;
    --secondary: #1F4D36;
    --secondary-light: #2D6B4A;
    --accent: #E8B84D;
    --gold: #C9A961;
    
    /* Neutrals */
    --dark: #1A1614;
    --gray-dark: #3D3834;
    --gray: #6B6460;
    --gray-light: #A39A94;
    --off-white: #F7F5F2;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #D4712B 0%, #E89554 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 22, 20, 0.7) 0%, rgba(26, 22, 20, 0.3) 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Import Google Fonts */
@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ==================== */
/* Navigation */
/* ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 22, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-left: 0.75rem;
}

.footer-logo {
    height: 70px;
    width: 70px;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
}





.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--off-white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--off-white);
    transition: all 0.3s ease;
}

/* ==================== */
/* Hero Section */
/* ==================== */

.hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 22, 20, 0.6) 0%, rgba(26, 22, 20, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
    animation: fadeInUp 1s ease 0.2s backwards;
}

@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);
    }
}

/* ==================== */
/* Container & Sections */
/* ==================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-warm);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ==================== */
/* Introduction Section */
/* ==================== */

.intro-section {
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

/* ==================== */
/* History Section */
/* ==================== */

.history-section {
    background: var(--off-white);
}

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

.history-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.history-text h3:first-child {
    margin-top: 0;
}

.history-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.history-image {
    position: sticky;
    top: 100px;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.image-caption {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
}

/* ==================== */
/* Temples Section */
/* ==================== */

.temples-section {
    background: var(--white);
}

.temples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.temple-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.temple-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.temple-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.temple-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.temple-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.temple-tips {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.temple-tips strong {
    color: var(--primary);
}

.photo-highlight {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ==================== */
/* Activities Section */
/* ==================== */

.activities-section {
    background: linear-gradient(to bottom, var(--white), var(--off-white));
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.activity-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.activity-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.activity-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ==================== */
/* Pub Street Section */
/* ==================== */

.pubstreet-section {
    background: var(--dark);
    color: var(--off-white);
}

.pubstreet-section .section-title {
    color: var(--gold);
}

.pubstreet-section .section-title::after {
    background: var(--accent);
}

.pubstreet-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pubstreet-intro .lead-text {
    color: var(--off-white);
}

.pubstreet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pubstreet-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.pubstreet-block h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pubstreet-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--off-white);
}

.venue-list {
    list-style: none;
}

.venue-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--off-white);
    font-size: 1rem;
}

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

.venue-list strong {
    color: var(--accent);
    font-weight: 600;
}

.pubstreet-tips {
    background: rgba(232, 184, 77, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    max-width: 900px;
    margin: 0 auto;
}

.pubstreet-tips h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.pubstreet-tips ul {
    list-style: none;
}

.pubstreet-tips li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--off-white);
    font-size: 1.05rem;
}

.pubstreet-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==================== */
/* Nightlife Section (Kampot - Riverside) */
/* ==================== */

.nightlife-section {
    background: var(--dark);
    color: var(--off-white);
}

.nightlife-section .section-title {
    color: var(--gold);
}

.nightlife-section .section-title::after {
    background: var(--accent);
}

.nightlife-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.nightlife-intro .lead-text {
    color: var(--off-white);
}

.riverside-section {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.riverside-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
}

.riverside-content {
    max-width: 1000px;
    margin: 0 auto;
}

.riverside-description h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.riverside-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--off-white);
    margin-bottom: 1.5rem;
}

.nightlife-tips {
    background: rgba(232, 184, 77, 0.1);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    margin-top: 4rem;
}

.nightlife-tips h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.tip-card h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.tip-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--off-white);
}

/* Rename sites section */
.sites-section {
    background: var(--white);
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.site-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.site-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.site-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.site-subtitle {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.site-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.site-tips {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-tips strong {
    color: var(--primary);
}

/* ==================== */
/* Practical Section */
/* ==================== */

.practical-section {
    background: var(--off-white);
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.practical-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.practical-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.practical-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.practical-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.practical-card .tip {
    background: var(--off-white);
    padding: 1rem;
    border-left: 3px solid var(--accent);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
    color: var(--gray);
}

/* ==================== */
/* CTA Section */
/* ==================== */

.cta-section {
    background: var(--gradient-warm);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==================== */
/* Footer */
/* ==================== */

.footer {
    background: var(--dark);
    color: var(--off-white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-light);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 0.9rem;
}

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

@media (max-width: 1024px) {
    .history-grid {
        grid-template-columns: 1fr;
    }
    
    .history-image {
        position: relative;
        top: 0;
    }
    
    .temples-grid,
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .practical-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .activities-grid,
    .pubstreet-grid,
    .practical-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    :root {
        --section-padding: 60px;
    }
}




