@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@400;700&family=Noto+Serif:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   RESET
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: #ffffff;
    color: #111111;

    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HEADER — UPDATED
========================= */

.site-header {
    position: relative; /* required for z-index to work */
    z-index: 1000;      /* puts header above hero */
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);

    /* More breathing room */
    padding: 30px 0;
}

.header-container {
    max-width: none;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    color: #111111 !important;   /* forces black */
    text-decoration: none !important;  /* removes underline */

    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1.5px;

    margin-left: 0;
}

.navigation {
    display: flex;
    align-items: center;

    /* More spacing between links */
    gap: 45px;
}

/* make anchors able to position pseudo elements */
.navigation a {
    position: relative;
    display: inline-block;      /* allows ::after sizing */
    padding-bottom: 6px;        /* space for underline */
    text-decoration: none;
    color: #111111;
}

/* ensure nav/header won't clip the underline */
.navigation,
.site-header,
.header-container {
    overflow: visible;
}

/* active underline */
.navigation a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;                  /* sits just under the text */
    width: 100%;
    height: 3px;
    background-color: #d4af37;  /* gold */
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(1);
}

/* optional: hover animation for all links */
.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 240ms ease;
}

.navigation a:hover::after,
.navigation a:focus::after {
    transform: scaleX(1);
}



/* =========================
   WELCOME SECTION
========================= */

.welcome {
    width: 100%;
    padding: 0; /* remove padding so hero fills full height */
}

/* =========================
   HERO BACKGROUND IMAGE
========================= */

.welcome-hero {
    width: 100%;
    min-height: 100vh;
    padding: 0;

    background-image: url("images/bghome.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;

    image-rendering: auto;
}

/* Fade-to-white gradient */
.welcome-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;

    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* Blurred box */
.welcome-blur-box {
    background: rgba(0, 0, 0, 0.30); /* slightly darker to compensate for less blur */
    backdrop-filter: blur(4px);      /* reduced blur */
    -webkit-backdrop-filter: blur(4px);

    padding: 12px 24px;
    border-radius: 14px;

    display: inline-block;
    margin: 0 auto;

    max-width: 650px;
    border: 1.5px solid rgba(255, 215, 0, 0.45);
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.25);


    position: relative;

    animation: blurFadeIn 1.2s ease forwards;
    opacity: 0;
}


/* Filipino sun watermark */
.welcome-blur-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("images/sunwatermark.png");
    background-size: 140px;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0.10;
    pointer-events: none;

    animation: watermarkFade 1.5s ease forwards;
}



/* Text inside hero */
.welcome-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;

    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);


    padding: 8px 12px; /* extremely tight */
}

/* Tighten spacing inside the blur box */
.welcome-content h1 {
    margin-top: 0;      /* removes any default top margin */
    margin-bottom: 6px; /* tight spacing */
}

.welcome-subtitle {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.intro-text {
    margin-top: 6px;
    line-height: 1.45;
}



/* Text animations */
.welcome-content h1,
.welcome-content .welcome-subtitle,
.welcome-content .intro-text {
    animation: textFadeUp 1.4s ease forwards;
    opacity: 0;
}

.welcome-content h1 {
    animation-delay: 0.2s;
}

.welcome-content .welcome-subtitle {
    animation-delay: 0.4s;
}

.welcome-content .intro-text {
    animation-delay: 0.6s;
}

/* Keyframes */
@keyframes blurFadeIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes textFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes watermarkFade {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 0.12; transform: scale(1); }
}

/* Typography */
.welcome h1 {
    font-size: clamp(48px, 10vw, 104px);
}

.intro-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    color: #ffffff;
}


/* =========================
   PHOTO GALLERY
========================= */

/* Wrapper */
.photo-gallery-wrapper {
    position: relative;
    max-width: 1224px;
    margin: 0 auto;
    padding: 100px 0;

    display: flex;
    align-items: center;
    gap: 20px;
}

/* Scroll container */
.photo-gallery-scroll {
    overflow: hidden;
    width: 100%;
}

/* Track */
.gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Image cards */
.gallery-image {
    /*min-width: 350px;
    height: 260px;*/
    min-width: 350px;
    height: clamp(180px, 25vw, 260px);
    overflow: hidden;
    border-radius: 10px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.gallery-btn {
    background: rgba(255, 215, 0, 0.35);
    border: 1px solid rgba(255, 215, 0, 0.55);
    color: #111;
    font-size: 28px;
    font-weight: bold;

    width: 48px;
    height: 48px;

    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;
}

.gallery-btn:hover {
    background: rgba(255, 215, 0, 0.55);
    transform: scale(1.08);
}


/* =========================
   DISCLOSURE
========================= */

/* Disclosure hero section (cropped vertically) */
.disclosure {
    width: 100%;
    height: 70vh; /* cropped height */
    padding: 0;

    background-image: url("images/disclosurehomebg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
}

/* Fade‑to‑white gradient at the top */
.disclosure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

/* Flex container for text + logo */
.disclosure-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1224px; /* matches gallery width */
    margin: 0 auto;
    padding: 0 70px; /* aligns with gallery padding */
}

.disclosure-blur-box {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 14px;
    padding: 20px 30px;
    max-width: 520px;

    /* Gold border */
    border: 1px solid rgba(255, 215, 0, 0.55);

    /* ⭐ Soft gold glow (matches welcome section) */
    box-shadow:
        0 0 12px rgba(255, 215, 0, 0.45),   /* outer gold glow */
        0 6px 20px rgba(0, 0, 0, 0.45);     /* depth shadow */

    /* fade-in animation */
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
}


/* Left text column */
.disclosure-text {
    font-family: 'Poppins', sans-serif;
    flex: 1;
    text-align: left;
    color: #ffffff;
    font-size: 18px;        /* still large */
    font-weight: 700;
    line-height: 1.35;       /* tighter */
    text-shadow: 0 2px 6px rgba(0,0,0,0.45);
    max-width: 520px;   /* optional but looks cleaner */
}

.disclosure-text p {
    margin: 15px 0;             /* natural paragraph spacing */
}

.disclosure-title {
    font-family: inherit;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
}

/* Right logo column */
.disclosure-logo img {
    width: clamp(200px, 30vw, 340px);
    height: clamp(200px, 30vw, 340px);
    object-fit: cover;     /* fills the circle cleanly */
    border-radius: 50%;    /* circle crop */
    display: block;
    margin-right: 0;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.75));
}

/* Hidden by default */
.disclosure-text,
.disclosure-logo img {
    opacity: 0;
    transform: translateY(35px); /* slightly more dramatic */
    transition: opacity 1s ease, transform 1s ease;
}

/* When visible */
.disclosure-visible .disclosure-text,
.disclosure-visible .disclosure-logo img {
    opacity: 1;
    transform: translateY(0);
}

.disclosure-blur-box {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
}

.disclosure-visible .disclosure-blur-box {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #111111;

    color: #ffffff;
}

.footer-container {
    max-width: 1224px;

    margin: 0 auto;

    padding: 70px 0;

    display: flex;

    justify-content: space-between;
}

.footer-section h2 {
    margin: 0 0 20px;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 2px;
}

.footer-section a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
}

.social-links {
    display: flex;

    gap: 25px;
}

.social-links img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.55));
}

.social-links img {
    width: clamp(22px, 3vw, 32px);
    height: clamp(22px, 3vw, 32px);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.social-links img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.55));
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .site-header {
        height: auto;
    }

    .header-container {
        height: auto;

        padding: 20px 25px;

        flex-direction: column;

        gap: 18px;
    }

    .navigation {
        gap: 18px;

        flex-wrap: wrap;

        justify-content: center;
    }

    .navigation a {
        font-size: 11px;
    }

    .welcome {
        padding: 90px 25px 70px;
    }

    .welcome h1 {
        font-size: 55px;

        letter-spacing: 2px;
    }

    .welcome-subtitle {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .intro-text {
        font-size: 14px;

        line-height: 1.75;
    }

    .photo-gallery {
        grid-template-columns: 1fr;

        padding: 0 25px;

        gap: 15px;
    }

    .gallery-image img {
        height: 400px;
    }

    .disclosure {
        padding: 50px 25px 70px;
    }

    .footer-container {
        padding: 50px 25px;

        flex-direction: column;

        gap: 40px;
    }
}
