html, body {
    background: #F6F3EE !important;
}

/* =========================
   LUXURY BRAND COLORS
========================= */
:root {
    --dark-teal: #1F6D75;
    --cream: #F6F3EE;
    --gold: #D8C3A5;
    --text: #4B4B4B;
}

/* =========================
   GENERAL STYLES
========================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

/* =========================
   HEADINGS
========================= */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark-teal);
    margin: 0;
}

section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-top: 60px;
}

/* =========================
   HEADER (HOME PAGE TOP)
========================= */
header {
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 1px;
}

header p {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6A6A6A;
}

/* =========================
   TOP NAVIGATION (NEW)
========================= */
.top-nav {
    text-align: center;
    background: var(--dark-teal);
    padding: 14px 0;
}

.top-nav a {
    color: var(--cream);
    margin: 0 18px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
}

.top-nav a:hover {
    color: var(--gold);
}

/* =========================
   HERO SECTION (FIXED SPACING)
========================= */
.hero {
    background: #F6F3EE;
    text-align: center;
    padding: 25px 20px 50px 20px; /* tightened top spacing */
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* =========================
   BUTTONS
========================= */
.button-container {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    background: var(--dark-teal);
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    margin: 10px;
    border-radius: 40px;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn:hover {
    background: var(--gold);
    color: var(--dark-teal);
}

/* =========================
   SERVICES SECTIONS
========================= */
.services {
    text-align: center;
    padding: 80px 20px;
    background: #F6F3EE;
}

.services + .services {
    border-top: 1px solid rgba(31, 109, 117, 0.12);
}

.services h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #1F6D75;
    margin-bottom: 10px;
}

.divider {
    width: 120px;
    height: 4px;
    background: #D8C3A5;
    margin: 20px auto 30px auto;
}

.services p {
    font-size: 1.2rem;
    line-height: 2;
    color: #5B5B5B;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   HOME PAGE GALLERY
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.04);
}

/* =========================
   CONTACT FORM
========================= */
.contact-box {
    max-width: 500px;
    margin: 60px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.contact-box button {
    width: 100%;
    padding: 14px;
    background: var(--dark-teal);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-box button:hover {
    background: var(--gold);
    color: var(--dark-teal);
}

/* =========================
   RESPONSIVE FIXES
========================= */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.8rem;
    }

    .hero h2 {
        font-size: 2.8rem;
    }

    section h2 {
        font-size: 2.2rem;
    }
}

/* =========================
   MISSION SECTION
========================= */
.mission {
    text-align: center;
    padding: 60px 20px;
    background: #F6F3EE;
    width: 100%;
    box-sizing: border-box;
}

.mission h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #1F6D75;
    margin-bottom: 10px;
    font-weight: 500;
}

.mission .divider {
    width: 100px;
    height: 3px;
    background: #D8C3A5;
    margin: 15px auto 25px auto;
}

.mission p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: #5B5B5B;
}

.mission-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
}

.mission-icons span {
    background: white;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    color: #1F6D75;
    font-weight: 500;
}

/* =========================
   FULL GALLERY PAGE (NEW)
========================= */
.gallery-page {
    padding: 60px 20px;
    text-align: center;
    background: var(--cream);
    color: var(--text);
}

.gallery-page h2 {
    font-size: 3rem;
    font-weight: 500;
    color: var(--dark-teal);
}

.gallery-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #5B5B5B;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.04);
}

/* =========================
   TRANSITION TAGLINE (FIXED SPACING)
========================= */
.transition-banner {
    text-align: center;
    padding: 5px 0 5px 0; /* tightened even more */
    background: var(--cream);
}

.transition-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark-teal);
    margin: 5px 0;
    font-weight: 500;
}


