:root {
    --primary-dark: #1a1a1a;
    --primary-light: #f8f8f8;
    --accent: #8a7f6d;
    --accent-light: #c4b9a5;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    min-width: 180px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
}

header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.logo a .site-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;

  vertical-align: sub;
}

.logo a span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}


nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--white);
    font-weight: 400;
}

nav ul li a:hover {
    color: var(--accent-light);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    position: relative;
}

.booking .explore-btn {
    margin-bottom: 5px;
}

.location-select {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 1100;
}

.location-select a {
    display: block;
    padding: 12px 15px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease;
}

.location-select a:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    flex: 1;
}

.services-page {
    padding-top: 100px;
    min-height: 100vh;
}

.services-circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.service-circle {
    width: 200px;
    text-align: center;
}

.service-circle img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--accent);
    margin-bottom: 15px;
}

.service-circle h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author h4 {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.testimonial-author p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.contact-info ul li {
    font-size: 1.2rem;
    margin: 5px 0;
}

.contact-link {
    color: var(--accent);
    cursor: default;
    position: relative;
}

.contact-link::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.contact-link:hover::after {
    width: 100%;
}

footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--white);
    margin: 0 15px;
}

.footer-nav a:hover {
    color: var(--accent-light);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .services-circles {
        gap: 30px;
    }
    
    .service-circle {
        width: 150px;
    }
    
    .service-circle img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 480px) {
    .services-circles {
        gap: 20px;
    }
    
    .service-circle {
        width: 130px;
    }
    
    .service-circle img {
        width: 120px;
        height: 120px;
    }
    
    .service-circle h3 {
        font-size: 1.2rem;
    }
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
}

@media (max-width: 1024px) {
    .testimonial-cards {
        gap: 20px;
    }
    .testimonial-card {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        width: 90%;
    }
}