body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

html {
    max-width: 100%;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 20px 15px;
    border-bottom: 2px solid #e0f7fa;
}

.header-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #004d61;
}

.header-logo p {
    margin: 0 10px;
    font-weight: 500;
}

.header-logo .logo {
    height: 60px;
    margin: 10px 0;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-top: 10px;
}

.header-nav .link {
    text-decoration: none;
    color: #005f73;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.header-nav .link:hover {
    background-color: #e0f7fa;
    color: #003840;
}

.header-nav .active {
    background-color: #00bcd4;
    color: white;
}

.carousel-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide img.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 5;
}

.hotel-title {
    flex: 1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hotel-title h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hotel-title p {
    font-size: 1.5rem;
    max-width: 500px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.booking-form h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.book-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-btn:hover {
    background-color: #1a252f;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

.welcome-section {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.lead-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #5d6d7e;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #2980b9;
    font-weight: bold;
}

.signature {
    font-style: italic;
    margin-top: 30px;
    font-size: 1.1rem;
}

.rooms-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.rooms-section h1 {
    font-size: 2.5em;
    color: #005f73;
    margin-bottom: 10px;
}

.rooms-section .lead-text {
    font-size: 1.2em;
    color: #0a9396;
    margin-bottom: 40px;
}

.room-types {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.room {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.room h2 {
    color: #005f73;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.room p {
    font-size: 1em;
    color: #333333;
}

.chambers-btn {
    background-color: #005f73;
    color: white;
    border-radius: 5px;
    padding: 10px;
    transition: background-color 0.5s ease;
    text-decoration: none;
}

.chambers-btn:hover {
    background-color: #10aac9
}

.promo-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.promo-section h1 {
    font-size: 2.5em;
    color: #00707e;
    margin-bottom: 40px;
}

.promo-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.promo-card {
    width: 300px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.promo-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.promo-text {
    padding: 20px;
}

.promo-text h2 {
    font-size: 1.3em;
    color: #005f73;
    margin-bottom: 10px;
}

.promo-text p {
    font-size: 1em;
    color: #333;
}

.services-extra-section {
    padding: 60px 20px;
    background-color: #f8fbfd;
    text-align: center;
    margin-top:50px;
    margin-bottom: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.services-extra-section h1 {
    font-size: 2.5em;
    color: #007a87;
    margin-bottom: 10px;
}

.services-extra-section .intro-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #333;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.service-item {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.service-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-item h2 {
    font-size: 1.3em;
    color: #005f73;
    margin: 15px 20px 10px;
}

.service-item p {
    font-size: 1em;
    color: #444;
    margin: 0 20px 20px;
}

.site-footer {
    background-color: #01323f;
    color: #fff;
    padding: 50px 20px 20px;
    font-size: 0.95em;
    width: 100%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-footer h2 {
    font-size: 1.3em;
    color: #00bcd4;
    margin-bottom: 15px;
}

.site-footer a {
    color: #a0f0ff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #ccc;
}

.promo-detailed {
    margin: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.promo-item {
    display: flex;
    width: 80%;
    background-color: #005f73;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.promo-item:hover {
    transform: scale(1.1);
}

.promo-item img {
    width: 300px;
    border: 1px solid silver;
}

.promo-info {
    width: 500px;
}

.promo-info {
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chambers-details-section {
    padding: 4rem 2rem;
    background-color: #fefefe;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .chambers-details-section h1 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 1rem;
  }
  
  .chambers-details-section .lead-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
  }
  
  .chamber-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .chamber-box {
    background: #ffffff;
    padding: 1.5rem;
    border-left: 5px solid #003366;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }
  
  .chamber-box:hover {
    transform: translateY(-4px);
  }
  
  .chamber-box h2 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 0.5rem;
  }
  
  .chamber-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.5rem 0;
  }
  
  .reservation-section {
    background-color: #f4f8fc;
    padding: 4rem 2rem;
    text-align: center;
    width: 80%;
    margin-bottom: 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .reservation-section h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 2rem;
  }
  
  .reservation-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .reservation-form .form-row {
    margin-bottom: 1.5rem;
  }
  
  .reservation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .reservation-form input,
  .reservation-form select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .submit-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #003366;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #00509e;
  }

  .restaurant-section {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
    max-width: 1200px;
    margin: auto;
}

.restaurant-section h1 {
    font-size: 2.5rem;
    color: #003344;
    text-align: center;
    margin-bottom: 1rem;
}

.restaurant-section .lead-text {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.menu-item h2 {
    font-size: 1.3rem;
    color: #005577;
    margin: 1rem 1rem 0.5rem;
}

.menu-item p {
    font-size: 1rem;
    color: #444;
    margin: 0 1rem 1rem;
}

.menu-item .price {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.restaurant-contact {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #eef4f7;
    border-radius: 10px;
    text-align: center;
}

.restaurant-contact h2 {
    color: #003344;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.restaurant-contact p {
    color: #333;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.restaurant-contact a {
    color: #005577;
    text-decoration: none;
}

.season-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.services-header h1 {
    margin: 0;
    font-size: 3em;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
    
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height:  auto;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.service-content p {
    color: #444;
    line-height: 1.6;
}

.contact-section {
    padding: 2rem;
    background-color: #f8f9fc;
    width: 100%;
}

.contact-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-info, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 45%;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info h1,
.contact-form h2 {
    margin-top: 0;
    color: #003366;
}

.contact-info p, .contact-info a {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.submit-btn {
    background-color: #003366;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background-color: #005599;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info, .contact-form {
        flex: 1 1 100%;
        padding: 1.5rem;
    }
}

.blog-section {
    background-color: #f4f6fb;
    padding: 3rem 1.5rem;
    width: 100%;
}

.blog-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-title {
    font-size: 2.5rem;
    color: #003366;
    text-align: center;
    margin-bottom: 2rem;
}

.blog-post {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.blog-post h2 {
    color: #003366;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1rem;
}

.blog-post p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-post {
        padding: 1.5rem;
    }

    .promo-item img {
        width: 150px !important;
    }

    .promo-info h2 {
        font-size: 15px !important;
    }
    .promo-info p {
        font-size: 11px !important;
        width: 90%;
    }

    .lead-text {
        text-align: center;
    }
}