/* Reset basic styles */
body, h1, h2, p, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and font */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Header */
header {
    position: relative;
    width: 100%;
    height: 70vh; /* 70% of screen height */
    background: url('hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

header h1 {
    font-size: 3rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 12px;
}

/* Villa Description Section */
.villa-description {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.villa-description .container {
    max-width: 800px;
    margin: 0 auto;
}

.villa-description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003566;
}

.villa-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 40px 20px;
    background-color: #fff;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* Request Form */
.request-form {
    background-color: #f1f1f1;
    padding: 60px 20px;
    text-align: center;
}

.request-form h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #003566;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    padding: 15px;
    background-color: #003566;
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #00509e;
}

/* Form response message */
.form-response {
    margin-top: 20px;
    font-size: 1rem;
}

/* Footer (optional later) */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }
    
    .villa-description h2 {
        font-size: 2rem;
    }
    
    .request-form h2 {
        font-size: 2rem;
    }
}




.contact {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #003566;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.contact a {
    color: #00509e;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


#calendar-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#calendar {
  max-width: 100%;
  margin: 0 auto;
}


.guest-reviews {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.guest-reviews h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #003566;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.review {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 20px 0;
  color: #555;
}

.guest-name {
  font-weight: bold;
  color: #003566;
}

.quote {
  font-size: 2rem;
  color: #ccc;
}

.read-more {
  background: none;
  border: none;
  color: #00509e;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 15px;
  text-decoration: underline;
}
.read-more:hover {
  color: #003566;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #003566;
    font-weight: bold;
}

/* Hide menu toggle by default */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: #003566;
    }
}


.logo {
    font-size: 1.8rem; /* Text size if logo is text */
    font-weight: bold;
    color: #003566;
}

/* If your logo is an image */
.logo img {
    height: 80px; /* or whatever you like */
    width: auto;
}


/* Price Table */
.prices-section {
  padding: 50px 20px;
  background-color: #fff;
}

.prices-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.price-table thead {
  background-color: #00a8e8; /* Blue header */
  color: white;
}

.price-table th,
.price-table td {
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.price-table tbody tr:nth-child(even) {
  background-color: #f9f9f9; /* Light grey */
}

.price-table tbody tr:hover {
  background-color: #eef7fb; /* Hover effect */
}
