*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    background-image: url(Main.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
nav{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav li{
    height: 50px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    transition: transform 0.3s ease;
}
nav a:hover{
    background-color: #f0f0f0;
    color: #40941c;
    transform: translateY(-5px);
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.562);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
.menu-button{
    display: none;
}
@media(max-width: 915px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
}
@media(max-width: 400px){
    .sidebar{
        width: 100%;
    }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns tops perfectly */
    gap: 20px;               /* Adds space between them */
    padding: 0 50px;         /* Replaces your hardcoded margins */
}
.quote {
    color: white;
    text-align: center;
    margin-top: 80px;
    font-size: 50px;
    padding: 60px 20px; /* Reduced vertical padding so content fits on screen */
    text-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 100px auto;
    padding: 0 50px;
}

/* 1. Allows the button area to fill the remaining space on the left */
.booking-buttons {
    flex: 1; 
    text-align: center;
}

.booking-buttons ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.booking-buttons li {
    flex: 1;
    max-width: 180px;
}

.booking-buttons a {
    display: block;
    background-color: #00acdb;
    color: white;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.booking-buttons a:hover {
    background-color: #b3ff00;
}

/* 2. Locks the review box size on the right */
.review {
    flex: 0 0 450px;                 /* Forces the box to stay exactly 450px wide (no growing, no shrinking) */
    color: rgb(116, 116, 116);
    background-color: rgba(255, 255, 255, 0.726);
    text-align: center;
    border-radius: 25px;
    padding: 30px;
    box-sizing: border-box;          /* Includes padding inside the 450px width calculation */
}
/* Media query for mobile phones (screens 768px wide or smaller) */
@media (max-width: 768px) {
    
    /* 1. Stacks the button section and review section vertically */
    .main-content {
        flex-direction: column; 
        gap: 30px;
        padding: 0 20px;       /* Reduces side padding to save screen space */
        margin-top: 20px;
    }
    .about-content {
        margin: 20px;   /* Reduces the massive outer spacing on small screens */
        padding: 20px;  /* Brings the text closer to the white card borders */
    }
    .about-info {
        flex-direction: column; /* Stacks the image on top of the text */
        align-items: center;    /* Centers both the image and the text block */
        gap: 20px;              /* Reduces the gap between the image and text */
    }
    .paul {
        width: 200px;           /* Shrinks the image slightly so it fits mobile screens */
        height: 200px;
    }
    .about-content-text {
        text-align: center;     /* Optional: centers your text alignment on mobile */
    }

    /* 2. Shrinks the massive quote text so it fits on one screen */
    .quote {
        font-size: 28px;        /* Significantly smaller for mobile */
        padding: 40px 15px;     /* Less padding to prevent pushing content down */
        margin-top: 40px;
    }

    /* 3. Ensures buttons expand nicely on mobile */
    .booking-buttons {
        width: 100%;
    }

    .booking-buttons ul {
        justify-content: center;
        width: 100%;
    }

    /* 4. Unlocks the fixed 450px width so it scales down on phone screens */
    .review {
        flex: none;             /* Disables the fixed desktop width restriction */
        width: 100%;            /* Allows the box to cleanly fill the phone width */
        padding: 20px;          /* Slightly tighter padding for small screens */
    }
}
.about-content {
    background-color: white;
    margin: 50px;
    padding: 40px;
}

.about-title {
    text-align: center;
    margin-bottom: 40px;
}

/* 1. This handles the side-by-side positioning */
.about-info {
    display: flex;
    align-items: flex-start; /* Aligns items to the top for long text block */
    gap: 40px;               /* Clean spacing between image and paragraph */
    width: 100%;
}

/* 2. Keeps the image locked to a clean size */
.paul {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;          /* Essential: stops image from flattening */
}

/* 3. Tells the text to wrap dynamically on the screen */
.about-content-text {
    flex: 1;                 /* Spans across the remaining width */
    min-width: 0;            /* Forces long strings of text to wrap */
    line-height: 1.6;
    font-size: 1.1rem;
}
/* Base wrapper for the reviews page area */
.reviews-page {
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    flex-grow: 1; 
}

.reviews-wrapper {
    max-width: 800px; /* Narrower width makes long text much easier to read */
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    font-size: 36px;
}

/* Stacks the cards vertically with clean spacing */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Creates a consistent gap between each card */
}

/* Styles each individual review box */
.review-card {
    background-color: rgba(255, 255, 255, 0.9); /* Bright white background */
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft premium shadow */
    transition: transform 0.2s ease;
}

/* Gentle pop-up animation when hovered on desktop */
.review-card:hover {
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    font-size: 18px;
}

.review-date {
    font-size: 14px;
    color: #888;
}

.review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 16px;
    color: #40941c; /* Matches your accent green */
    text-align: right;
}

/* Mobile responsive optimization */
@media (max-width: 600px) {
    .page-title {
        font-size: 28px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-text {
        font-size: 16px;
    }
}
/* ==========================================
   7. GALLERY PAGE LAYOUT STYLES
   ========================================== */
.gallery-page {
    max-width: 1200px;
    margin: 40px auto 60px auto;
    padding: 30px;  
    flex-grow: 1; /* Ensures page stretches down fully */

    background-color: rgba(255, 255, 255, 0.15); /* Ultra-subtle light tint */
    backdrop-filter: blur(15px);                /* Softens the background photo */
    -webkit-backdrop-filter: blur(15px);        /* Safari browser support fix */
}

.gallery-title {
    text-align: center;
    color: white;
    font-size: 42px;
    margin-bottom: 40px;
    text-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
}

/* Automatically creates columns that wrap based on screen dimensions */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px; /* Clean grid line gaps between images */
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.1);
    height: 250px; /* Fixed height row alignment uniform look */
    transition: transform 0.3s ease;
}

/* Smooth zoom card animation on hover */
.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops images beautifully without distorting them */
    object-position: center;
    display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    .gallery-grid {
        grid-template-columns: 1fr; /* Single column on small devices */
        gap: 15px;
    }
    .gallery-item {
        height: 220px; /* Slightly shorter frame targets on mobile viewports */
    }
}