body {
         @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans Pro', sans-serif;
            background: #ffffff;
            min-height: 100vh;
            color: #2c2c2c;
            line-height: 1.6;
        }

        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #f0f0f0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 400;
            color: #2c2c2c;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            font-weight: 300;
            transition: all 0.3s ease;
            padding: 8px 0;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: #2c2c2c;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #2c2c2c;
        }

        .hero {
            text-align: center;
            padding: 120px 40px 100px;
            background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
            color: #2c2c2c;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 30px;
            font-weight: 400;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 50px;
            color: #666;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.2s both;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 60px 0;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: transparent;
            color: #666;
            border: 1px solid #e0e0e0;
            padding: 12px 30px;
            border-radius: 0;
            cursor: pointer;
            font-weight: 300;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 12px;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .filter-btn:hover, .filter-btn.active {
            background: #2c2c2c;
            color: #ffffff;
            border-color: #2c2c2c;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 100px;
        }

        .photo-card {
            background: #ffffff;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            opacity: 0;
            transform: translateY(60px);
            animation: slideInUp 0.8s ease-out forwards;
        }

        .photo-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .photo-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .photo-card:hover img {
            transform: scale(1.03);
        }

        .photo-info {
            padding: 35px 30px;
        }

        .photo-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 12px;
            color: #2c2c2c;
            line-height: 1.3;
        }

        .photo-location {
            color: #999;
            font-size: 0.9rem;
            margin-bottom: 15px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .photo-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .photo-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tag {
            background: #f8f8f8;
            padding: 6px 12px;
            border-radius: 0;
            font-size: 0.75rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 300;
            border: 1px solid #e8e8e8;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            animation: modalFadeIn 0.4s ease-out;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .modal-close {
            position: absolute;
            top: -60px;
            right: 0;
            color: #2c2c2c;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 20px;
            font-weight: 300;
        }

        .modal-close:hover {
            color: #666;
        }

        .welcome-section {
            text-align: center;
            padding: 80px 40px;
            background: #fafafa;
            margin-top: 60px;
        }

        .welcome-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: #2c2c2c;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .welcome-text {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }

        .stats {
            background: #ffffff;
            padding: 80px 40px;
            text-align: center;
            color: #2c2c2c;
            border-top: 1px solid #f0f0f0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 800px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 15px;
            color: #2c2c2c;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 20px;
            }
            
            .nav-container {
                padding: 0 20px;
            }
        }

        .hidden {
            display: none;
        }
     
    