/* ============================================
   Poppins Font (loaded via Google Fonts)
   ============================================ */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #6C6C6C;
    background-color: #F3F3F3;
    font-size: 16px;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 80px 0;
}

/* ============================================
   Scroll-triggered fade-in (all elements)
   ============================================ */
.scroll-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

green {
    color: #224C89;
}

/* ============================================
   Header
   ============================================ */
.header {
    padding: 30px 0 20px;
    background-color: #F3F3F3;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E5E5E5;
}

.header-content {
    align-items: center;
    text-align: center;
}

.logo-icon {
    width: 260px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Image Grid Sections
   ============================================ */
.image-grid-section {
    padding: 40px 0;
    background-image: url('../img/gallery_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.image-grid-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0px auto;
}

.grid-item {
    width: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.grid-item:nth-child(odd) {
    padding-top: 40px;
}

.grid-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 0.5;
}

/* ============================================
   Typography
   ============================================ */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
}

.green-text {
    color: #224C89;
}

/* ============================================
   Introduction Section
   ============================================ */
.intro-section {
    padding: 80px 0 0;
    background-color: #F3F3F3;
}

.intro-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    /* max-width: 840px; */
    margin: 0 auto 40px;
    color: #224C89;
}

.intro-text {
    /* max-width: 800px; */
    margin: 0 auto 40px;
    text-align: center;
    color: #6C6C6C;
    font-size: 22px;
    line-height: 30px;
    font-weight: 100;
}

.intro-text p {
    margin-bottom: 25px;
}

/* ============================================
   Quote Styles
   ============================================ */
.quote {
    max-width: 680px;
    margin: 20px 0 0;
    text-align: left;
    border: none;
    padding: 0;
}

.intro-section .quote {
    margin: 20px auto 0;
    text-align: center;
}

.quote-text {
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    font-style: normal;
    line-height: 34px;
    color: #224C89;
    font-weight: 100;
}

.quote-author {
    font-size: 18px;
    font-style: normal;
    color: #6C6C6C;
    font-weight: 400;
    display: block;
}

/* ============================================
   Pattern Image
   ============================================ */
.pattern-img {
    display: block;
    max-width: 180px;
    margin: 60px auto;
    width: 100%;
    height: auto;
}

/* ============================================
   CTA Button
   ============================================ */
.cta-button-container {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 30px;
    background: linear-gradient(to right, #1B4986 0%, #4478C4 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 23px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 0px;
    background-color: #F3F3F3;
    text-align: center;
}

.footer-slogan {
    font-size: 24px;
    color: #224C89;
    line-height: 30px;
    max-width: 750px;
    margin: 0 auto;
    margin-bottom: 50px;
    font-weight: 100;
}

.footer-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #6C6C6C;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-info {
    max-width: 700px;
    margin: 0 auto 20px;
}

.footer-address {
    font-size: 16px;
    color: #6C6C6C;
    margin-bottom: 0px;
    /* font-weight: 500; */
    font-weight: bold;
}

.footer-contact {
    font-size: 15px;
    color: #6C6C6C;
    line-height: 24px;
}

.footer-contact a {
    color: #224C89;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.7;
}

.footer-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-icon-img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.footer-icon a {
    color: inherit;
    transition: opacity 0.3s ease;
}

.footer-icon a:hover {
    opacity: 0.7;
}

.footer-icon svg {
    width: 30px;
    height: 30px;
    color: #224C89;
}

/* ============================================
   Footer Bottom
   ============================================ */
.footer-bottom {
    background: radial-gradient(circle, #4478C4 0%, #1B4986 100%);
    padding: 40px 0;
    color: white;
    font-weight: 100;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-bottom-cta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 0 40px;
    font-size: 12px;
    line-height: 15px;
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-end;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-right .content {
    display: inline-block;
    text-align: left;
}

.footer-bottom-cta a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    display: inline;
}

.footer-bottom-cta a:hover {
    opacity: 0.7;
}

.footer-bottom-cta span {
    color: white;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 900px) {
    .image-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap: 20px;
        padding: 0 20px;
    }

    .image-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .grid-item {
        flex: 0 0 auto;
        width: 60vw;
        max-width: 400px;
        scroll-snap-align: start;
        padding-top: 0;
    }

    .grid-item:nth-child(odd) {
        padding-top: 0;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 990px) {
    .footer-bottom-cta {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 40px;
        text-align: center;
        font-size: 15px;
        line-height: 20px;
    }

    .footer-bottom-left {
        order: 1;
        text-align: center;
    }

    .footer-bottom-right {
        order: 2;
        text-align: center;
    }

    .footer-bottom-right .content {
        text-align: center;
    }

    .footer-bottom-center {
        order: 3;
        text-align: center;
    }
}

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

    section {
        padding: 60px 0;
    }

    .intro-section {
        padding: 60px 0 0;
    }

    .header {
        padding: 20px 0;
    }

    .logo-icon {
        width: 160px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .intro-text {
        font-size: 16px;
    }

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

    .footer-slogan {
        font-size: 16px;
        line-height: 23px;
    }

    .footer-cta {
        font-size: 16px;
    }

    .intro-section .section-title {
        font-size: 20px;
    }

    .intro-text {
        font-size: 16px;
        line-height: 23px;
    }

    .quote-text {
        font-size: 16px;
        line-height: 23px;
    }

    .quote-author {
        font-size: 16px;
        line-height: 23px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 14px;
    }
}

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

    .section-title {
        font-size: 24px;
    }

    .quote-text {
        font-size: 18px;
    }

    .footer-slogan {
        font-size: 18px;
    }
}

/* ============================================
   Privacy Policy Page
   ============================================ */
.privacy-page {
    padding: 80px 0 100px;
    background-color: #F3F3F3;
}

.privacy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #224C89;
    margin-bottom: 8px;
    text-align: center;
}

.privacy-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #6C6C6C;
    margin-bottom: 40px;
}

.privacy-intro li {
    font-size: 18px;
}

.privacy-updated {
    font-size: 14px;
    color: #6C6C6C;
    margin: 48px 0 16px;
}

.privacy-note {
    font-size: 14px;
    font-style: italic;
    color: #6C6C6C;
    margin-bottom: 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content section {
    margin-bottom: 40px;
    padding: 0px;
}

.privacy-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #224C89;
    margin-bottom: 16px;
}

.privacy-content p,
.privacy-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #6C6C6C;
    margin-bottom: 12px;
}

.privacy-content ul {
    margin: 12px 0 12px 24px;
    padding: 0;
}

.privacy-content a {
    color: #224C89;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-content a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 60px 0 80px;
    }

    .privacy-title {
        font-size: 24px;
    }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

.cookie-consent-banner.is-visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1090px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
    color: #6C6C6C;
    margin: 0;
}

.cookie-consent-text a {
    color: #224C89;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-consent-text a:hover {
    opacity: 0.7;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 23px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-accept {
    background: linear-gradient(to right, #1B4986 0%, #4478C4 100%);
    color: white;
}

.cookie-btn-decline {
    background: transparent;
    color: #6C6C6C;
    border: 2px solid #E5E5E5;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-consent-buttons {
        justify-content: center;
    }
}
