/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #fdf8fa;
    color: #3d2c33;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  width: 40px;
  height: auto;
}


.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 18px 24px;
    background: rgba(255, 245, 248, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #fadce6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-btn {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 30px;
    color: #7a5a66;
    transition: 0.25s ease;
}

.nav-btn:hover,
.nav-btn.active {
    background: #fce4ec;
    color: #b34a6b;
}

/* ---------- SECTIONS ---------- */
.page-section {
    padding: 60px 0 70px;
}

.page-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: #b34a6b;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.section-intro {
    text-align: center;
    color: #7a5a66;
    max-width: 540px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}

/* ---------- HERO / HOME ---------- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, #fff5f8 0%, #fce8ef 100%);
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 300;
    color: #b34a6b;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #7a5a66;
    margin-top: 6px;
    font-weight: 300;
}

.main-photo {
    margin-top: 32px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(179, 74, 107, 0.20);
    border: 4px solid white;
    transition: 0.3s ease;
}

.main-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(179, 74, 107, 0.30);
}

/* ---------- ABOUT ---------- */
.about-section {
    background: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.about-photo {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(179, 74, 107, 0.15);
    border: 4px solid #fce4ec;
}

.about-text {
    flex: 1;
    min-width: 240px;
}

.about-text h3 {
    font-size: 1.6rem;
    color: #b34a6b;
    font-weight: 500;
    margin-bottom: 12px;
}

.about-text p {
    margin-bottom: 14px;
    color: #4d3a42;
}

/* ---------- FEATURES ---------- */
.features-section {
    background: #fff9fb;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    padding: 28px 22px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(179, 74, 107, 0.08);
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #fce4ec;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(179, 74, 107, 0.14);
}

.feature-icon {
    font-size: 2.2rem;
    display: inline-block;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #b34a6b;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: #5d4650;
    font-size: 0.95rem;
}

/* ---------- PHOTO GALLERY ---------- */
.photo-section {
    background: white;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.photo-card {
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.07);
    transition: 0.25s ease;
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(179, 74, 107, 0.12);
}

.photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    background: #f0e6ea;
}

.photo-card figcaption {
    margin-top: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #8a6e7a;
}

/* ---------- CONTACT ---------- */
.contact-section {
    background: #fff9fb;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
    align-items: flex-start;
}

.contact-form {
    flex: 2;
    min-width: 280px;
    background: white;
    padding: 32px 30px;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(179, 74, 107, 0.08);
    border: 1px solid #fadce6;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #7a5a66;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #f0dce4;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fefafc;
    transition: 0.25s ease;
    color: #3d2c33;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b34a6b;
    box-shadow: 0 0 0 4px rgba(179, 74, 107, 0.10);
}

.btn-send {
    background: #b34a6b;
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.25s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.btn-send:hover {
    background: #9c3d5b;
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(179, 74, 107, 0.30);
}

.contact-details {
    flex: 1;
    min-width: 200px;
    background: white;
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(179, 74, 107, 0.08);
    border: 1px solid #fadce6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5e4ea;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.4rem;
    min-width: 32px;
}

.contact-item a {
    color: #b34a6b;
    font-weight: 500;
    transition: 0.2s;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
    text-align: center;
    padding: 28px 20px;
    background: #fce8ef;
    color: #7a5a66;
    font-size: 0.95rem;
    border-top: 1px solid #fadce6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .page-section h2 {
        font-size: 1.8rem;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 14px;
    }

    .photo-card img {
        height: 170px;
    }

    .photo-card {
        padding: 10px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        padding: 24px 18px;
    }

    .contact-details {
        padding: 24px 18px;
    }

    .navbar {
        gap: 4px 14px;
        padding: 14px 16px;
    }

    .nav-btn {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
}