/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff7f4; /* Matches the light pink canvas of reference */
    color: #8a707b;
    line-height: 1.6;
}

/* Background wrapper if you want the grey/purple outer edge */
.page-wrapper {
    background: #d8cbd2;
    min-height: 100vh;
    padding: 60px 0;
}

/* =========================================
   2. CANVAS CONTAINER
   ========================================= */
.canvas {
    max-width: 1200px;
    margin: auto;
    background: #fff7f4;
    padding: 60px;
    position: relative;
    overflow: hidden; /* Clips the decorative leaves */
}

.canvas > * {
    position: relative;
    z-index: 2;
}

/* Leaf Decorations */
.canvas::before, .canvas::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: url('../images/Leaves-For-paper-flower-7.svg') no-repeat;
    background-size: contain;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}
.canvas::before { top: -140px; left: -160px; transform: scaleX(-1) scaleY(-1); }
.canvas::after { bottom: -160px; right: -160px; transform: rotate(8deg); }

/* Top Right Wave */
.wave-top {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 350px;
    height: 500px;
    background: url('../images/wave-top-right.png') no-repeat;
    background-size: cover;
    filter: brightness(0.9) saturate(1.1);
    z-index: 1;
}

/* =========================================
   3. HEADER
   ========================================= */
.site-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-script {
    font-family: 'Alex Brush', cursive;
    font-size: 70px;
    color: #a34d6e;
    line-height: 1.2;
}

.subtitle {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #b7a1ab;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Navigation Line & Links */
.nav-container {
    margin-top: 30px;
    border-top: 1px solid #dcc6d0;
    display: inline-block;
    padding-top: 20px;
    width: 60%;
}

.nav a {
    margin: 0 20px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    color: #9a7d88;
    font-weight: 600;
    text-transform: uppercase;
}

/* =========================================
   4. TOP GRID (4 Columns)
   ========================================= */
.top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
    gap: 20px;
    margin-bottom: 70px;
}

.grid-card {
    position: relative;
    border-radius: 0; /* Reference images are sharp or slightly rounded */
    overflow: hidden;
}

.grid-card img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    text-align: center;
    transform: translateY(100%); /* Hidden by default */
    transition: 0.3s;
}

.grid-card:hover .card-overlay {
    transform: translateY(0);
}

.btn-overlay {
    background: #fff;
    border: none;
    padding: 5px 20px;
    color: #a34d6e;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

/* =========================================
   5. LOWER SECTION (The Fix: 3 Columns)
   ========================================= */
.lower-section {
    display: grid;
    /* This perfectly matches the top grid's rhythm */
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 20px;
    align-items: start;
}

/* --- LEFT COLUMN (Spans 2 units width) --- */
.col-left {
    padding-right: 20px; /* Slight breathing room for text */
}

.section-title {
    font-family: 'Playfair Display', serif; /* Use a serif for "Veronica's Blog" look */
    font-size: 32px;
    color: #b294a9; /* Muted Purple */
    margin-bottom: 15px;
    font-style: italic;
}

.section-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 90%;
}

.wide-img-wrapper {
    position: relative;
}

.wide-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Floating "About" badge on image like reference */
.floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 11px;
    color: #a34d6e;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- MIDDLE COLUMN (Tall Image) --- */
.col-middle {
    height: 100%;
}

.tall-img {
    width: 100%;
    height: 480px; /* Taller than left image */
    object-fit: cover;
    display: block;
}

/* --- RIGHT COLUMN (About Box) --- */
.col-right {
    height: 100%;
}

.about-box {
    background: #fff;
    border: 1px solid #eee;
    height: 100%; /* Stretches to fill if needed, or define height */
    text-align: center;
    display: flex;
    flex-direction: column;
}

.about-header {
    background: linear-gradient(to bottom, #d8c4d1, #b294a9);
    color: white;
    padding: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-body {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-body p {
    font-size: 12px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    text-decoration: none;
    color: #999;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.social-icons span {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #b294a9;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    margin: 0 3px;
    cursor: pointer;
}

.fa-instagram {
  color: white;
}

/* =========================================
   MOBILE STYLES (≤ 768px)
   ========================================= */
@media (max-width: 768px) {

    .page-wrapper {
        padding: 30px 0;
    }

    .canvas {
        padding: 40px 25px;
    }

    /* Header */
    .brand-script {
        font-size: 52px;
    }

    .subtitle {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .nav-container {
        width: 100%;
        padding-top: 15px;
    }

    .nav a {
        margin: 0 10px;
        font-size: 12px;
    }

    /* Top Grid → 2 Columns */
    .top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .grid-card img {
        height: 160px;
    }

    /* Lower Section → Single Column */
    .lower-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .col-left,
    .col-middle,
    .col-right {
        padding: 0;
    }

    .section-title {
        font-size: 26px;
        text-align: center;
    }

    .section-desc {
        text-align: center;
        max-width: 100%;
    }

    .wide-img {
        height: 220px;
    }

    .floating-badge {
        top: 15px;
        left: 15px;
        padding: 6px 20px;
        font-size: 10px;
    }

    .tall-img {
        height: 260px;
    }

    .about-box {
        max-width: 100%;
    }

    /* Decorative elements scale down */
    .wave-top {
        width: 240px;
        height: 360px;
    }
}

/* =========================================
   TABLET STYLES (769px – 1024px)
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .canvas {
        padding: 50px 40px;
    }

    .top-grid {
        gap: 18px;
    }

    .grid-card img {
        height: 180px;
    }

    /* Lower Section → 2 Columns */
    .lower-section {
        grid-template-columns: 2fr 1fr;
        grid-template-areas:
            "left left"
            "middle right";
        gap: 25px;
    }

    .col-left {
        grid-area: left;
    }

    .col-middle {
        grid-area: middle;
    }

    .col-right {
        grid-area: right;
    }

    .wide-img {
        height: 260px;
    }

    .tall-img {
        height: 380px;
    }
}

/* ===============================
   BOOKING PAGE
================================ */

.booking-wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.booking-card {
    background: #fff;
    max-width: 520px;
    width: 100%;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.booking-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #b294a9;
    margin-bottom: 10px;
}

.booking-subtitle {
    font-size: 14px;
    color: #9a7d88;
    margin-bottom: 30px;
}

.booking-success {
    background: #f1e6ec;
    color: #8a707b;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.booking-fields {
    display: grid;
    gap: 18px;
}

.booking-field {
    text-align: left;
}

.booking-field label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a58b95;
    margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e6d6dd;
    font-size: 14px;
    background: #fff;
    color: #8a707b;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: #b294a9;
}

/* UPI BOX */
.upi-box {
    display: none;
    background: #fff7f4;
    padding: 20px;
    border: 1px dashed #d8c4d1;
    border-radius: 6px;
}

.upi-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: #a34d6e;
}

.upi-box img {
    width: 200px;
    margin: 10px auto;
    display: block;
}

.upi-note {
    font-size: 12px;
    color: #8a707b;
}

/* BUTTON */
.booking-btn {
    margin-top: 10px;
    background: #b294a9;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #a34d6e;
}

/* MOBILE */
@media (max-width: 600px) {
    .booking-card {
        padding: 30px 20px;
    }
}
