@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-blue: #1d6ed3;
    --orange: #f07d58;
    --dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #f4f5f7;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.625;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    max-width: 65ch;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    transition: 0.3s;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    padding: 8px 10px;
    border-radius: 20px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links .active {
    background: #eef4ff;
    color: var(--primary-blue);
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: none !important;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* HERO (Home & Plan Your Trip style) */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1697163700052-dbbedf1f7073?auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn-blue {
    background: var(--primary-blue);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.hero-btns .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* SECTIONS */
.section-padding {
    padding: 80px 8%;
    text-align: center;
    background: var(--bg-light);
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* GRIDS */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* SUBPAGE HEADER (Text Only) */
.subpage-header {
    text-align: center;
    padding: 80px 20px 40px;
    background: var(--bg-light);
}

.subpage-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.subpage-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* SHARED CARDS */
.dest-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-img-container {
    position: relative;
    height: 250px;
}

.dest-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.dest-label h3 {
    font-size: 1.8rem;
    font-weight: 900;
}

.dest-card-body {
    padding: 25px;
}

.dest-card-body p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.625;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    border: 1px solid #e0e0e0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    background: #fafafa;
}

.tag-temp {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tag-veg {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4caf50;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* BLOG CARDS */
.blog-card {
    text-align: left;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 20px 25px 25px;
}

.blog-category {
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-body h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}

.blog-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
}

/* BEACHES PARALLAX */
.beaches-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    background-color: #2c3e50;
    /* fallback background */
}

.beaches-section h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.beach-tags {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.beach-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-orange:hover {
    background: #d96843;
}

/* CTA BANNER & FOOTER */
.site-footer {
    background: #fff;
    padding: 60px 0 30px;
    font-size: 0.95rem;
    margin-top: 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.cta-banner {
    background: var(--primary-blue);
    margin: 60px 8% 40px;
    padding: 50px 60px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(29, 110, 211, 0.2);
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
    max-width: 100%;
}

.btn-white {
    background: #fff;
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-white:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 0 8%;
    margin-bottom: 40px;
}

.footer-info .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-info .logo img {
    height: 40px;
}

.footer-info .logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--dark);
    line-height: 1.1;
    margin-left: 15px;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 400px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.footer-col ul li i {
    margin-right: 15px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--border-color);
}

.socials a:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8% 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block !important;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .subpage-header h1 {
        font-size: 2.5rem;
    }

    .food-hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .dest-grid,
    .blog-grid,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        margin: 20px auto;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .dest-grid,
    .blog-grid,
    .grid-3,
    .grid-2,
    .things-grid {
        grid-template-columns: 1fr;
    }
}


/* STANDARD PAGE & POST CONTENT */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    text-align: left;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: 'Playfair Display', serif;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.page-content h2 {
    font-size: 1.8rem;
}

.page-content h3 {
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-muted);
}

.page-content ul,
.page-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.page-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .page-container {
        padding: 20px;
        margin-top: 0;
    }
}

/* FOOD PAGE REDESIGN */
.food-hero {
    background-color: #f8fafc;
    padding: 100px 20px 80px;
}

.food-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.food-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.food-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.food-img-container {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.food-img-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease;
    display: block;
}

.food-card:hover .food-img-container img {
    transform: scale(1.05);
}

.food-img-container .tag-veg {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #22c55e;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.food-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.food-card-body p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.ingredients-section {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.ingredients-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 12px;
}

.ingredients-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-pill {
    background: #f1f5f9;
    color: #334155;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* THINGS TO DO REDESIGN */
.things-hero {
    background-color: #f8f9fa;
    padding: 120px 20px 80px;
    text-align: center;
    color: #111827;
    margin-bottom: 60px;
}

.things-hero-content h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

.things-hero-content p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.6;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #111827;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.things-section {
    padding: 0 8% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.things-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.things-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.things-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.things-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.things-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.things-card:hover .things-img-container img {
    transform: scale(1.08);
}

.things-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px 20px 20px;
    color: #fff;
}

.things-label h3 {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
}

.things-card-body {
    padding: 25px;
    flex-grow: 1;
}

.things-card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.estimate-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .things-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .things-grid {
        grid-template-columns: 1fr;
    }

    .things-hero {
        padding: 80px 20px;
    }

    .things-hero-content h1 {
        font-size: 2.5rem;
    }
}