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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #6B6660;
    background-color: #F3E5AB;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #F3E5AB;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 2rem;
    font-weight: 600;
    color: #6B6660;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #6B6660;
    font-weight: 600;
    font-size: 2rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #6B6660;
}

/* Hamburger Menu */
.menu-container {
    position: relative;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #6B6660;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: #5a5752;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    right: 0;
    background: #F3E5AB;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(107, 102, 96, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #6B6660;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(107, 102, 96, 0.1);
}

.dropdown-menu li:first-child a {
    border-radius: 12px 12px 0 0;
}

.dropdown-menu li:last-child a {
    border-radius: 0 0 12px 12px;
}

/* Home Main Section */
.home-main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 5% 3rem;
    background: #F3E5AB;
    gap: 3rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #6B6660;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #6B6660;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #6B6660;
    color: #F3E5AB;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5a5752;
    transform: translateY(-2px);
}

/* Gallery Page */
.gallery-page {
    padding: 10rem 5% 4rem;
    max-width: 100%;
    margin: 0 auto;
    min-height: calc(100vh - 100px);
    background: #F3E5AB;
}

.gallery-page h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #6B6660;
}

.nav-links a.active {
    color: #6B6660;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    display: block;
    background: #F3E5AB;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gallery-image {
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-card:nth-child(1) .gallery-image {
    background-image: url('AboutMe.jpeg');
}

.gallery-card:nth-child(2) .gallery-image {
    background-image: url('WeekendVibes.jpeg');
}

.gallery-card:nth-child(3) .gallery-image {
    background-image: url('Monthly%20Favorites.jpeg');
}

.gallery-card h3 {
    padding: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #6B6660;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: #F3E5AB;
}

.contact-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #6B6660;
}

.contact-intro {
    text-align: center;
    color: #6B6660;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #6B6660;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6B6660;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: #6B6660;
    color: #F3E5AB;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #5a5752;
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #6B6660;
    border-radius: 50%;
    color: #F3E5AB;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    background: #5a5752;
    transform: translateY(-2px);
}

.copyright {
    color: #6B6660;
    font-size: 0.9rem;
}

/* Footer (for gallery page) */
.footer {
    padding: 2rem 5%;
    background: #F3E5AB;
    text-align: center;
}

.footer .copyright {
    color: #6B6660;
}

/* Detail Page */
.detail-page {
    min-height: 100vh;
    background: #F3E5AB;
    padding-top: 80px;
}

.detail-page.centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 120px);
    min-height: auto;
    overflow: hidden;
}

.detail-image {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 5%;
    text-align: center;
}

.detail-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #6B6660;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.detail-content p {
    font-size: 1.2rem;
    color: #6B6660;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.back-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #6B6660;
    color: #F3E5AB;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #5a5752;
    transform: translateY(-2px);
}

/* Side by Side Layout */
.side-by-side {
    display: flex;
    flex-direction: row;
    padding-top: 80px;
}

.side-image {
    width: 40%;
    height: 80vh;
    margin: auto 0 auto 5%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.side-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5%;
}

.side-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #6B6660;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.side-content p {
    font-size: 1.2rem;
    color: #6B6660;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-section,
    .contact-section {
        padding: 4rem 5%;
    }
}
