/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F4E9DC;
    font-family: 'Inter', sans-serif;
    color: #3A2A1A;
    line-height: 1.5;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo-text, .brand-text, .hero-tagline, .nav-links a {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #3D4A22;
    border-left: 6px solid #C75A2B;
    padding-left: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* HEADER */
header {
    background: #FFFFFFF0;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #D4AF3740;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.brand-text {
    font-size: 2rem;
    font-weight: 700;
    color: #3D4A22;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    color: #3A2A1A;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
}

.nav-links a:hover, .nav-links a.active {
    color: #C75A2B;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 4px;
}

.mobile-menu {
    display: none;
    font-size: 1.9rem;
    cursor: pointer;
    color: #3D4A22;
}
/* Hero Section */
.hero {
    background: linear-gradient(107deg, rgba(244,233,220,0.88) 0%, rgba(199,90,43,0.1) 100%), url('images/IMG_9965_Original.jpeg');
    background-size: cover;
    background-position: center 30%;
    min-height: 70vh;
    background-blend-mode: overlay;
    display: table;
    width: 100%;
}

.hero-container {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding: 3rem 5%;
}

/* Desktop: side-by-side using inline-block */
.hero-logo-col,
.hero-text-col {
    display: inline-block;
    vertical-align: middle;
}
.hero-logo-col {
    width: 40%;
}
.hero-text-col {
    width: 58%;
}

.hero-logo-col {
    text-align: right;
    padding-right: 2rem;
}

.hero-text-col {
    text-align: left;
    padding-left: 2rem;
}

/* Logo styling */
.hero-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 400px;
    display: inline-block;

    border: 2px solid rgba(199, 90, 43, 0.5);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Tagline styling */
.hero-tagline {
    font-size: 2rem;
    font-style: italic;
    color: #C75A2B;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

/* Subtitle text */
.hero-sub {
    font-size: 1.2rem;
    color: #3A2A1A;
    max-width: 540px;
    margin: 1.2rem 0;
    font-weight: 400;
}

/* Button styling (keep your existing or enhance) */
.btn-primary {
    display: inline-block;
    background-color: #8b3a1a;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #a94d2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 58, 26, 0.3);
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Tablet and Phone: stacked */
@media (max-width: 768px) {
    .hero-container {
        display: block;
        padding: 2rem 5%;
    }

    .hero-logo-col,
    .hero-text-col {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-logo-col {
        margin-bottom: 1.5rem;
    }

    .hero-text-col {
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-logo {
        max-height: 250px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-logo {
        max-height: 180px;
    }
}

/* Fade-in animation for logo */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* about two columns */
.two-columns {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #2E241A;
}

.about-image {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.about-image img:hover {
    transform: scale(1.01);
}

/* SERVICES GRID */
.services {
    background: #fffcf7;
    padding: 4rem 0;
    border-radius: 2rem 2rem 0 0;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 1.8rem 1rem;
    text-align: center;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #E9DDD0;
    transition: all 0.2s;
}

.service-card i {
    font-size: 2.6rem;
    color: #C75A2B;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3D4A22;
}

.service-card p {
    color: #5E4B38;
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 20px 25px -12px rgba(0,0,0,0.1);
}

/* GALLERY */
.gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.6rem;
}

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 20px -8px rgba(0,0,0,0.15);
    background: #fff;
    transition: 0.2s;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.02);
}

.gallery-item a.glightbox {
    display: block;
    text-decoration: none;
}

.gallery-item a.glightbox img {
    width: 100%;
/*  height: 100%; */
    object-fit: cover;
    display: block;
}

/* CARIBBEAN RESERVED SECTION */
.caribbean-reserved {
    background: linear-gradient(135deg, #F4E9DC 0%, #FDF8F2 100%);
    padding: 4rem 1rem;
    border-top: 1px solid #D4AF3730;
    border-bottom: 1px solid #D4AF3730;
}

.caribbean-card {
    background: #FFFFFFCC;
    backdrop-filter: blur(4px);
    border-radius: 48px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #D4AF37;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.05);
}

.caribbean-content {
    margin-top: 2rem;
}

.caribbean-symbols {
    float: left;
    max-width: 40%;
    height: auto;
    border-radius: 24px;
    margin: 0 1.5rem 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.caribbean-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3A2A1A;
    margin-bottom: 1.2rem;
    text-align: left;
}

/* Clearfix to ensure container contains the floated image */
.caribbean-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive: Stack on mobile (image above text, no wrap) */
@media (max-width: 768px) {
    .caribbean-symbols {
        float: none;
        display: block;
        max-width: 80%;
        margin: 0 auto 1.5rem auto;
    }

    .caribbean-content p {
        text-align: center;
    }
}

/* Optional: Add a subtle hover effect to the image */
.caribbean-symbols:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
/* CONTACT SECTION */
.contact {
    background: #3D4A22;
    color: #F4E9DC;
    padding: 4rem 0;
}

.contact h2 {
    color: #F4E9DC;
    border-left-color: #D4AF37;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
}

.contact-item a {
    color: #F4E9DC;
    text-decoration: none;
}

.contact-item i {
    width: 32px;
    color: #D4AF37;
    font-size: 1.4rem;
}

.contact-note {
    flex: 1;
    background: #2E3A1C;
    padding: 2rem;
    border-radius: 36px;
}

.btn-secondary {
    background: #D4AF37;
    color: #3A2A1A;
    padding: 0.7rem 1.6rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: #C75A2B;
    color: white;
}

/* FOOTER */
footer {
    background: #2B241C;
    color: #E6D9CD;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}
.small {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 850px) {
    .mobile-menu {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 70%;
        height: 100vh;
        padding: 2rem;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s;
        gap: 1.8rem;
        z-index: 99;
    }
    .nav-links.active {
        left: 0;
    }
    .two-columns {
        flex-direction: column;
    }
}

@media (max-width: 580px) {
    .container {
        padding: 0 1.2rem;
    }
    h2 {
        font-size: 2rem;
    }
}
