 :root {
            --cambodia-red: #c41e3a;
            --cambodia-blue: #032d58;
            --gold: #d4af37;
            --stone: #b7a99a;
            --jungle-green: #1e3f20;
            --light-bg: #f8f5f2;
            --text-dark: #333;
            --text-light: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Merriweather', serif;
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.7;
        }

        h1, h2, h3, h4 {
            font-family: 'Noto Sans Khmer', sans-serif;
            font-weight: 700;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* Header Styles - Logo Left, Nav Centered */
        .angkor-header {
            background-color: var(--cambodia-blue);
            color: var(--text-light);
            padding: 1.5rem 3rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            position: relative; /* Needed for absolute positioning of nav */
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            white-space: nowrap;
            margin-right: auto; /* Pushes nav to center */
        }

        .logo span {
            color: var(--text-light);
        }

        nav {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: max-content;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--gold);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .search-container {
            display: flex;
            align-items: center;
            margin-left: auto;
        }

        .search-form {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .search-form:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .search-input {
            background: transparent;
            border: none;
            color: var(--text-light);
            padding: 0.5rem 1rem;
            width: 0;
            transition: width 0.3s ease;
            opacity: 0;
        }

        .search-input:focus {
            outline: none;
            width: 200px;
            opacity: 1;
        }

        .search-button {
            background: transparent;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 0.5rem;
            font-size: 1.2rem;
        }

        .search-results {
            position: absolute;
            top: 100%;
            right: 0;
            width: 300px;
            background: white;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            padding: 1rem;
            display: none;
            z-index: 1000;
        }

        .search-results.show {
            display: block;
        }

        .search-result-item {
            padding: 0.5rem;
            border-bottom: 1px solid #eee;
            cursor: pointer;
        }

        .search-result-item:hover {
            background: #f5f5f5;
        }
        /* Hero Section */
        .angkor-hero {
            height: 80vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://plus.unsplash.com/premium_photo-1661963188432-5de8a11f21a7?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 4rem;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }

        .hero-date {
            display: inline-block;
            background-color: rgba(212, 175, 55, 0.8);
            color: var(--text-dark);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 700;
        }

        /* Main Content */
        .angkor-container {
            max-width: 1200px;
            margin: 0 auto 6rem;
            padding: 0 2rem;
        }

        .angkor-article {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 3rem;
            margin-bottom: 4rem;
        }

        .article-intro h2 {
            color: var(--cambodia-blue);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .travel-meta {
            color: var(--stone);
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        .travel-meta i {
            margin-right: 0.5rem;
            color: var(--gold);
        }

        /* Content Styles */
        .angkor-content h3 {
            color: var(--jungle-green);
            font-size: 1.8rem;
            margin: 3rem 0 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .angkor-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }

        .angkor-content p {
            margin-bottom: 1.5rem;
        }

        /* Figures */
        .angkor-figure {
            margin: 2.5rem 0;
            text-align: center;
        }

        .angkor-figure img {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .angkor-figure img:hover {
            transform: scale(1.02);
        }

        figcaption {
            color: var(--stone);
            font-style: italic;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }

        /* Highlights */
        .angkor-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .highlight-card {
            background-color: var(--light-bg);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .highlight-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .highlight-card h4 {
            color: var(--cambodia-blue);
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }

        /* Temple List */
        .temple-list {
            margin: 2rem 0;
            padding-left: 1.5rem;
        }

        .temple-list li {
            margin-bottom: 1rem;
            position: relative;
            list-style-type: none;
        }

        .temple-list li::before {
            content: '🛕';
            position: absolute;
            left: -1.5rem;
        }

        /* Tips Section */
        .angkor-tips {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--gold);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: 0 8px 8px 0;
        }

        .angkor-tips h3 {
            color: var(--cambodia-blue);
            margin-top: 0;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .tip {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .tip i {
            color: var(--gold);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        /* Gallery */
        .angkor-gallery {
            margin-top: 4rem;
        }

        .angkor-gallery h2 {
            color: var(--cambodia-blue);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

/* Footer Styles */
        .angkor-footer {
            background-color: var(--cambodia-blue);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--text-light);
        }

        .footer-about {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-title {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .footer-links i {
            margin-right: 0.5rem;
            width: 1.2rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--cambodia-blue);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-column {
                align-items: center;
                text-align: center;
            }
            
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links a:hover {
                transform: none;
            }
        }