/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.site-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.site-header a {
    text-decoration: none;
    color: #003b5c;
    font-weight: bold;
}

/* HERO */

.hero {
    height: 75vh;

    background-image:
        linear-gradient(
            rgba(0,0,0,0.4),
            rgba(0,0,0,0.4)
        ),
        url("images/homepage-hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* BUTTONS */

.btn-primary,
.btn-secondary {

    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
}

.btn-primary {
    background: #00a7d6;
    color: white;
}

.btn-secondary {
    background: white;
    color: #003b5c;
}

/* SECTIONS */

section {
    padding: 80px 20px;
}

h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* FOOTER */

footer {
    background: #003b5c;
    color: white;
    text-align: center;
    padding: 30px;
}
/* ==========================================
   FEATURED PROPERTIES
========================================== */

.property-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 40px auto 0;
}

.property-card {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.1);

    transition: 0.3s ease;
}

.property-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.15);
}

.property-card img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;
}

.property-card h3 {

    padding: 20px 20px 10px;

    color: #003b5c;
}

.property-card p {

    padding: 0 20px 20px;

    color: #666;
}

.property-card a {

    display: inline-block;

    margin: 0 20px 20px;

    background: #00a7d6;

    color: white;

    padding: 12px 20px;

    text-decoration: none;

    border-radius: 5px;

    font-weight: 600;
}

.property-card a:hover {

    background: #008bb3;
}
.properties-section {

    background: #f8f9fa;

    text-align: center;
}

.properties-section h2 {

    color: #003b5c;

    font-size: 2.5rem;
}
/* ==========================================
   WHY BOOK DIRECT
========================================== */

.why-book-direct {

    background: white;

    text-align: center;
}

.why-book-direct h2 {

    color: #003b5c;

    font-size: 2.5rem;

    margin-bottom: 15px;
}

.section-intro {

    max-width: 700px;

    margin: 0 auto 50px;

    color: #666;

    font-size: 1.1rem;
}

.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;
}

.benefit-card {

    padding: 35px 25px;

    background: #f8f9fa;

    border-radius: 10px;

    transition: 0.3s ease;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.08);
}

.benefit-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}

.benefit-icon {

    font-size: 3rem;

    margin-bottom: 20px;
}

.benefit-card h3 {

    color: #003b5c;

    margin-bottom: 15px;
}

.benefit-card p {

    color: #666;

    line-height: 1.7;
}
.why-book-direct {
    padding-bottom: 40px;
}
.trust-bar {

    background: #003b5c;
    color: white;

    padding: 50px 20px;
}

.trust-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));

    gap: 30px;

    text-align: center;
}

.trust-number {

    display: block;

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 10px;
}

.trust-label {

    color: rgba(255,255,255,.85);
}
/* ==========================================
   REVIEWS
========================================== */

.reviews {

    background: #f8f9fa;

    text-align: center;
}

.reviews-header {

    margin-bottom: 50px;
}

.reviews h2 {

    color: #003b5c;

    font-size: 2.5rem;

    margin-bottom: 15px;
}

.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;
}

.review-card {

    background: white;

    padding: 35px;

    border-radius: 10px;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.review-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}

.stars {

    font-size: 1.5rem;

    color: #f4b400;

    margin-bottom: 20px;
}

.review-card p {

    font-style: italic;

    line-height: 1.8;

    margin-bottom: 25px;

    color: #555;

    font-size: 1.05rem;
}

.review-card h4 {

    color: #003b5c;

    margin-bottom: 5px;
}

/* ==========================================
   PROPERTY HERO - SEAWINDS
========================================== */

.property-hero {

    height: 80vh;

    background-size: cover;

    background-position: center;

    position: relative;
}

.seawinds-hero {

    background-image:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('images/seawinds/seawinds-hero.jpg');
}


.property-overlay {

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;
}

.property-content h1 {

    font-size: 4rem;

    margin-bottom: 20px;
}

.property-content p {

    font-size: 1.3rem;

    margin-bottom: 30px;
}
.review-card span {

    color: #777;

    font-size: 0.9rem;
}

.reviews-button {

    margin-top: 50px;
}

.review-card {
    min-height: 320px;
}

/* ==========================================
   PROPERTY HERO - COASTAL COTTAGE
========================================== */

.property-hero {

    height: 80vh;

    background-size: cover;

    background-position: center;

    position: relative;
}

.cottage-hero {

    background-image:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('images/cottage/cottage-hero.jpg');
}

.property-overlay {

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;
}

.property-content h1 {

    font-size: 4rem;

    margin-bottom: 20px;
}

.property-content p {

    font-size: 1.3rem;

    margin-bottom: 30px;
}

/* ==========================================
   PROPERTY HERO - COMFY ROOM
========================================== */

.property-hero {

    height: 80vh;

    background-size: cover;

    background-position: center;

    position: relative;
}

.comfy-room-hero {

    background-image:
    linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.45)
    ),
    url('images/room/comfy-room-hero.jpg');
}

.property-overlay {

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;
}

.property-content h1 {

    font-size: 4rem;

    margin-bottom: 20px;
}

.property-content p {

    font-size: 1.3rem;

    margin-bottom: 30px;
}

/* ==========================================
   PROPERTY FACTS
========================================== */

.property-facts {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(150px, 1fr));

    gap: 20px;

    padding: 40px;

    background: #003b5c;

    color: white;

    text-align: center;
}

.fact {

    display: flex;

    flex-direction: column;

    gap: 10px;

    font-size: 1.1rem;
}

.fact span {

    font-weight: 600;
}

/* ==========================================
   PROPERTY DESCRIPTION
========================================== */

.property-description {

    padding: 80px 20px;

    background: white;
}

.property-description h2 {

    text-align: center;

    color: #003b5c;

    margin-bottom: 40px;

    font-size: 2.5rem;
}

.property-description p {

    max-width: 900px;

    margin: 0 auto 25px;

    line-height: 1.8;

    font-size: 1.1rem;

    color: #555;
}

.fact {
    font-size: 2rem;
}

.fact span {
    font-size: 1rem;
}

/* ==========================================
   AMENITIES
========================================== */

.amenities {

    background: #f8f9fa;

    padding: 80px 20px;
}

.amenities h2 {

    text-align: center;

    color: #003b5c;

    margin-bottom: 50px;

    font-size: 2.5rem;
}

.amenities-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    max-width: 1000px;

    margin: auto;
}

.amenities-grid div {

    background: white;

    padding: 20px;

    border-radius: 8px;

    box-shadow:
        0 4px 10px rgba(0,0,0,.08);

    font-weight: 600;
}

/* ==========================================
   FEATURED REVIEW
========================================== */

.featured-review {

    background: white;

    padding: 80px 20px;

    text-align: center;
}

.featured-review h2 {

    color: #003b5c;

    font-size: 2.5rem;

    margin-bottom: 50px;
}

.review-highlight {

    max-width: 900px;

    margin: auto;

    background: #f8f9fa;

    padding: 50px;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);
}

.review-highlight .stars {

    color: #f4b400;

    font-size: 2rem;

    margin-bottom: 25px;
}

.review-highlight blockquote {

    font-size: 1.3rem;

    line-height: 1.8;

    font-style: italic;

    color: #555;

    margin-bottom: 30px;
}

.review-author {

    font-weight: 700;

    color: #003b5c;
}

/* ==========================================
   PHOTO GALLERY
========================================== */

.gallery {
    padding: 80px 20px;
    background: #ffffff;
}

.gallery h2 {
    text-align: center;
    color: #003b5c;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LOCATION LIST
========================================== */

.location-section {

    padding: 80px 20px;

    background: #ffffff;
}

.location-section h2 {

    text-align: center;

    font-size: 3rem;

    color: #003b5c;

    margin-bottom: 20px;
}

.location-intro {

    max-width: 800px;

    margin: 0 auto 50px;

    text-align: center;

    font-size: 1.1rem;

    line-height: 1.8;
}

.location-list {

    max-width: 800px;

    margin: 0 auto;
}

.location-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid #e5e5e5;

    font-size: 1.1rem;
}

.location-item span {

    font-weight: 600;

    color: #003b5c;
}

.location-item strong {

    color: #555;
}.booking-cta {

    background: #003b5c;

    color: white;

    text-align: center;

    padding: 80px 20px;
}

.booking-cta h2 {

    font-size: 2.8rem;

    margin-bottom: 20px;
}

.booking-cta p {

    margin-bottom: 30px;

    font-size: 1.2rem;
}

.feature-list {

    list-style: none;

    max-width: 800px;

    margin: 30px auto;

    padding: 0;
}

.feature-list li {

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}

.feature-list li::before {

    content: "✓";

    color: #00a7d6;

    font-weight: bold;

    margin-right: 12px;
}

.additional-list {

    list-style: none;

    max-width: 800px;

    margin: 30px auto;

    padding: 0;
}

.additional-list li {

    padding: 12px 0;

    border-bottom: 1px solid #eee;
}

.additional-list li::before {

    content: "✓";

    color: #00a7d6;

    font-weight: bold;

    margin-right: 12px;
}

/* ==========================================
   PAGE HEADER
========================================== */

.page-header {

    background: #003b5c;

    color: white;

    text-align: center;

    padding: 100px 20px;
}

.page-header h1 {

    font-size: 3.5rem;

    margin-bottom: 20px;
}

.page-header p {

    max-width: 800px;

    margin: auto;

    font-size: 1.2rem;
}

/* ==========================================
   PROPERTIES PAGE
========================================== */

.properties-page {

    padding: 80px 20px;

    background: #f8f9fa;
}

.properties-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(350px, 1fr));

    gap: 40px;
}

.property-card {
    display: flex;
    flex-direction: column;
}

.property-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-primary {
    margin-top: auto;
}

.properties-page .property-card {

    background: white;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);
}

.properties-page .property-card img {

    width: 100%;

    height: 250px;

    object-fit: cover;
}

.properties-page .property-content {

    padding: 25px;
}

.property-rating {

    color: #f4b400;

    font-weight: 700;

    margin: 15px 0;
}

.property-features {

    margin: 20px 0;

    padding-left: 20px;

    line-height: 1.8;
}


.property-card h2 {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.btn-primary {
    margin-top: auto;
}
.review-snippet {
    min-height: 80px;
    font-style: italic;
    font-weight: 600;
}
.card-description {
    min-height: 170px;
    margin-bottom: 30px;
}

.reviews-section {
    padding: 80px 0;
}

.reviews-section h2 {
    text-align: center;
    color: #003f66;
    margin-bottom: 10px;
}

.review-summary {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.review-card p {
    font-style: italic;
    line-height: 1.7;
}

.review-card h4 {
    margin-top: 20px;
    color: #003f66;
}

.stars {
    color: #f4b400;
    font-size: 22px;
    margin-bottom: 15px;
}

.activities-section {
    padding: 80px 0;
}

.activities-section h2 {
    text-align: center;
    color: #003f66;
    margin-bottom: 40px;
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr);
    gap: 30px;
}

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.activity-card h3 {
    color: #003f66;
    margin-bottom: 15px;
}

.activity-card p {
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.contact-details h2,
.contact-form h2 {
    color: #003f66;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    margin-bottom: 8px;
    color: #003f66;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.contact-cta {
    background: #003f66;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    margin-bottom: 30px;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .site-header .container {
        flex-direction: column;
        text-align: center;
    }

    .site-header ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
        margin-top: 15px;
    }

    .site-header li {
        list-style: none;
    }

    .logo h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

}    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .property-grid,
    .properties-grid,
    .reviews-grid,
    .review-grid,
    .activity-grid,
    .contact-grid,
    .gallery-grid,
    .benefits-grid,
    .trust-container {
        grid-template-columns: 1fr;
    }

}