html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #faf6f2;
  color: #4b3b32;
}

#map {
    width: 85%;
    height: 180px;
    margin: 35px auto 0;
    border-radius: 20px;
    overflow: hidden;
}

.header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 28px 60px;
    background-color: #efe5de;
}

.logo {
    display: inline-block;

    font-family: 'Cormorant Garamond', serif;

    font-size: 56px;
    font-weight: 700;

    color: #b87955;

    line-height: 0.9;
}

.logo span {
    display: block;

    text-align: center;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 14px;

    margin-top: 8px;
}

/* .logo span {
  display: block;
  font-size: 12px;
  letter-spacing: 8px;
  text-align: center;
} */

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #4b3b32;
  font-size: 14px;
}

.book-btn {
  background: #d88961;
  color: white;
  padding: 13px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 60px;
  min-height: 600px;
}

.hero-text {
  width: 45%;
}

.hero-text h1 {
  font-size: 60px;
  line-height: 1.1;
  color: #8f4f34;
}

.hero-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #6c5a50;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  background: #d88961;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.hero-image {
  width: 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 50%;
}

.services {
    padding: 100px 60px;
    background: white;
    text-align: center;
}

.services h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #b87955;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #b87955;
    margin: 20px 20px 10px;
}

.card p {
    padding: 0 25px 30px;
    line-height: 1.7;
    color: #666;
}

/* ABOUT PAGE */

.about-hero {
    text-align: center;
    padding: 100px 20px;
    background: #f8f2ee;
}

.about-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    color: #b87955;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    color: #666;
}

.about-page {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    padding: 100px 80px;
}

.about-photo {
    width: 45%;
}

.about-photo img {
    width: 100%;
    border-radius: 30px;
}

.about-content {
    width: 50%;
}

.section-label {
    color: #b87955;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    color: #8f4f34;

    margin: 20px 0;
}

.about-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.features {
    padding: 100px 80px;
    background: #fffaf7;
    text-align: center;
}

.features h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    color: #b87955;

    margin-bottom: 50px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    width: 320px;

    background: white;

    padding: 35px;

    border-radius: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #b87955;
    font-size: 30px;

    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.7;
    color: #666;
}


/* CONTACT PAGE */

.contact-hero {
    text-align: center;
    padding: 100px 20px;
    background: #f8f2ee;
}

.contact-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    color: #b87955;
    margin-bottom: 15px;
}

.contact-hero p {
    color: #666;
    font-size: 18px;
}

.contact-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.contact-card {
    width: 700px;

    background: white;

    padding: 50px;

    border-radius: 25px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    text-align: center;
}

.contact-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px;
    color: #b87955;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    color: #8f4f34;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666;
    font-size: 18px;
}
@media (max-width: 768px) {
    .header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a {
        margin: 0;
        font-size: 14px;
    }

    .logo {
        justify-self: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 25px;
    }

    .hero-text,
    .hero-image {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .description {
        font-size: 15px;
    }

    .hero-image img {
        width: 100%;
        max-width: 380px;
        margin-top: 30px;
    }

    .services {
        padding: 70px 25px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}

.service-expand-card {
    cursor: pointer;
}

.read-more-btn {
    margin-bottom: 25px;
    background: #d88961;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.service-details {
    display: none;
    padding: 0 25px 30px;
    text-align: left;
}

.service-details p {
    padding: 0;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-expand-card.active .service-details {
    display: block;
}

@media (max-width: 768px) {
    .about-page {
        flex-direction: column;
        padding: 60px 25px;
        gap: 40px;
        text-align: center;
    }

    .about-photo,
    .about-content {
        width: 100%;
    }

    .about-photo img {
        max-width: 380px;
        width: 100%;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 15px;
    }

    .features {
        padding: 70px 25px;
    }

    .features h2 {
        font-size: 40px;
    }

    .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 350px;
        box-sizing: border-box;
    }
}

