:root {
    --ocean-deep: #0a2342;
    --ocean-mid: #1a5276;
    --teal: #17a589;
    --aqua: #48c9b0;
    --sand: #f5cba7;
    --cream: #fdf6ec;
    --gold: #d4ac0d;
    --coral: #e74c3c;
    --white: #ffffff;
    --text-dark: #1a1a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', serif;
    background: var(--cream);
    color: var(--text-dark);
}

/* NAV BAR */
.navbar {
    background: var(--ocean-deep);
    backdrop-filter: blur(12px);   
    border-bottom: 1px solid rgba(72, 201, 176, 0.2);
    transition: background 0.3s ease;
    padding: 0.75rem 1.5rem;
}

#intro {
    margin-top: 80px;
}

#intro::before {
    content: '';
    display: block;
    height: 80px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--aqua) !important;
    letter-spacing: 1px;
    font-weight: 700;
}

/* HAMBURGER TOGGLER */
.navbar-toggler {
    border: 1px solid rgba(72, 201, 176, 0.5) !important;
    padding: 0.35rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(72, 201, 176, 0.3);
}

.navbar-toggler-icon {
    background-image:  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(72,201,176,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: 0;
    height: 1px;
    background: var(--aqua);
    transition: width 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--aqua) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 1.5rem);
}


/* HERO SECTION */
#hero {
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(10, 35, 66, 0.85) 0%, rgba(23, 165, 137, 0.4) 60%, rgba(10, 35, 66, 0.7) 100%),
        url(https://proudlyfilipino.com/wp-content/uploads/2024/10/TSMC-Exceeds-Expectations-with-Strong-Third-Quarter-Revenue-Growth-16-1122x631.jpg) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(72, 201, 176, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

#hero > * {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 1rem;
    animation: fadeUp 1s ease both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    animation: fadeUp 1s ease 0.2s both;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hero-title span {
    color: var(--aqua);
    font-style: italic;
}

.hero-sub {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 1.5rem auto 2.5rem;
    font-style: italic;
    animation: fadeUp 1s ease both;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: cneter;
    animation: fadeUp 1s ease both;
}

.hero-badge {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--aqua);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
}

.hero-cta {
    margin-top: 2.5rem;
    animation: fadeUp 1s ease 0.8s both;
}

.page-hero {
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 3rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.page-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(2, 13, 27, 0.85) 0%, rgba(9, 67, 55, 0.4) 60%, rgba(10, 35, 66, 0.7) 100%);
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 0.75rem;
    animation: fadeUp 0.8s ease both;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    animation: fadeUp 0.8s ease 0.15s both;
    text-shadow: 0 4px 30px rgba(0, 0, o, 0.4);
}

.page-hero-title em {
    color: var(--aqua);
    font-style: italic;
}

.page-hero-sub {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 1rem auto 0;
    font-style: italic;
}

/* ABOUT */
#about {
    background: var(--cream);
}

.about-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--ocean-deep);
    color: white;
    padding: 0.9rem 1.3rem;
    border-radius: 2px;
    border-left: 3px solid var(--aqua);
}

.about-img-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--aqua);
}

.about-img-badge .lbl {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* HIGHLIGHT */
.highlight-band {
    background: var(--teal);
    padding: 1.2rem 2rem;
    text-align: center;
}

.highlight-band p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

/* QUOTE BLOCK */
.quote-block {
    border-left: 3px solid var(--aqua);
    padding: 1rem 1.4rem;
    margin: 1.75rem 0;
    background: rgba(72, 201, 176, 0.07);
    border-radius: 0 4px 4px 0;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--ocean-deep);
}

/* STATS STRIP */
.stat-strip {
    background: var(--ocean-deep);
    padding: 2.5rem 0;
}

.intro-stat {
    text-align: center;
    padding: 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.intro-stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--aqua);
}

.stat-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean-mid);
    margin-top: 0.2rem;
}

/* ── SECTION COMMONS ── */
    section { padding: 6rem 0; }
    .section-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: var(--ocean-deep);
      line-height: 1.1;
    }
    .section-title em { color: var(--teal); font-style: italic; }
    .section-body {
      font-size: 1.15rem;
      line-height: 1.9;
      color: #444;
      font-weight: 300;
    }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--aqua));
      margin: 1.5rem 0;
      border-radius: 2px;
    }

/* FOOTER */
footer {
    background: var(--ocean-deep);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--aqua);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.4rem;
    font-style: italic;
}

.footer-heading {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 0.9rem;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--aqua);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.63rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.20);
    text-align: center;
}

.social-icon {
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--aqua);
}

/* ATTRACTIONS */
#attractions-section {
    background: var(--cream);
}

.attraction-card {
    background: var(--ocean-mid);
    border: 1px solid rgba(72, 201 176, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
}

.attraction-card:hover {
    border-color: var(--aqua);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.attraction-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.attraction-body {
    padding: 1.4rem;
}

.attraction-tag {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 0.4rem;
}

.attraction-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
}

.attraction-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* BEACHES */
#beaches-section {
    background: var(--cream);
}

.beach-item {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    padding: 1.4rem;
    border-radius: 4px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0,05);
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.beach-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--aqua);
    line-height: 1;
    min-width: 48px;
}

.beach-name {
    font-family: 'Playfair Display', serif;
    Font-size: 1.15rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 0.2rem;
}

.beach-loc {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.4rem;
}

.beach-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* FOOD SECTION */
#food-section {
    background: var(--cream);
}

#restaurants {
    background: var(--ocean-deep);
}

.food-card {
    background: white;
    border: 1px solid rgba(72, 201 176, 0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
}

.food-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.food-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.food-card-body {
    padding: 1.4rem;
}

.food-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ocean-deep);
    margin-bottom: 0.4rem;
}

.food-type {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}

.food-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(72, 201, 176, 0.3);
    border-radius: 4px;
    padding: 1.8rem;
    transition: all 0.3s;
    height: 100%;
}

.restaurant-card:hover {
    background: rgba(72, 201, 176, 0.1);
    border-color: var(--aqua);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.restaurant-emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.restaurant-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.4rem;
}

.restaurant-location {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 0.75rem;
}

.restaurant-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.restaurant-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.restaurant-tag {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(72, 201, 176, 0.15);
    border: 1px solid rgba(72, 201, 176, 0.4);
    color: var(--aqua);
    padding: 0.25rem 0.65rem;
    border-radius: 2px;
}

.dining-tips-box {
    background: var(--cream);
    border: 1px solid rgba(72, 201, 176, 0.2);
    border-radius: 4px;
    padding: 1.8rem;
    margin-top: 3rem;
}

.dining-tips-box h5 {
    font-family: 'Playfair Display', serif;
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

.dining-tip-col p {
    color: var(--ocean-mid);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.dining-tip-col strong {
    color: var(--teal);
}