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

    body {
        font-family: 'Cabin', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #333;
    }

    /* Header */
    .header {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        background-color: #2f323b;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }

    .nav-brand {
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      font-family: "Alfa Slab One", serif;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-link {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-link:hover {
        color: #666;
    }

    .nav-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Mobile menu */
    @media (max-width: 768px) {
        .nav-toggle {
            display: block;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: #fff;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            padding: 4rem 2rem;
            box-shadow: -2px 0 10px rgba(0,0,0,0.1);
            transition: right 0.3s ease;
        }

        .nav-links.active {
            right: 0;
        }
    }

    /* Photo Grid */
    .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 0;
        min-height: 50vh;
    }

    .photo-item {
        position: relative;
        aspect-ratio: 1;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .photo-item:hover {
        transform: scale(1.05);
        z-index: 10;
    }

    .photo-bg {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-color: #f0f0f0;
    }

    /* Main Content */
    .main-content {
        background-color: #2f323b;
        padding: 4rem 0;
        color: #fff;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .content-wrapper {
        text-align: center;
    }

    .main-title {
        font-family: 'Alfa Slab One', serif;
        font-size: 3rem;
        color: #fffafa;
        margin-bottom: 2rem;
        border: 3px solid #fff;
        padding: 1rem 2rem;
        display: inline-block;
    }

    .description {
        font-size: 1.1rem;
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    .description a {
        color: #fff;
        text-decoration: underline;
        transition: opacity 0.3s ease;
    }

    .description a:hover {
        opacity: 0.8;
    }

    /* Footer */
    .footer {
        background-color: #2f323b;
        padding: 2rem 0;
    }

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

    .footer-copyright {
        color: #fff;
        font-family: 'Cabin', sans-serif;
    }

    .footer-links {
        display: flex;
        gap: 1rem;
        list-style: none;
    }

    .footer-link {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.3s ease;
    }

    .footer-link:hover {
        color: #666;
    }

    .footer-contact {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-contact a {
        color: #fff;
        text-decoration: none;
        font-family: 'Cabin', sans-serif;
    }

    .footer-contact a:hover {
        text-decoration: underline;
    }

    /* Bottom Photo Grid */
    .bottom-photo {
        min-height: 40vh;
    }

    .bottom-photo-item {
        position: relative;
        height: 40vh;
        overflow: hidden;
    }

    .bottom-photo-bg {
        width: 100%;
        height: 100%;
        background-size: 111%;
        background-position: 19.35% 49.53%;
        background-color: #f0f0f0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .main-title {
            font-size: 2rem;
            padding: 0.8rem 1.5rem;
        }

        .description {
            font-size: 1rem;
            padding: 0 1rem;
        }

        .footer-links {
            justify-content: center;
        }
    }
