/* frank-ruhl-libre-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Frank Ruhl Libre';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/frank-ruhl-libre-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* jost-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/jost-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/jost-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =============================================
           CSS CUSTOM PROPERTIES (Brand Colors & Fonts)
           ============================================= */
        :root {
            /* Brand Colors */
            --color-primary: #005355;
            --color-primary-dark: #003d3f;
            --color-secondary: #99a9d7;
            --color-secondary-light: #b8c4e3;
            --color-accent: #f0e0af;
            --color-accent-dark: #e5d49a;
            --color-white: #ffffff;
            --color-offwhite: #f8f7f4;
            --color-text-muted: #005355;

            /* Typography */
            --font-headline: 'Frank Ruhl Libre', Georgia, serif;
            --font-body: 'Jost', 'Segoe UI', Tahoma, sans-serif;

            /* Spacing */
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-xxl: 4rem;

            /* Border Radius */
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 28px;

            /* Shadows */
            --shadow-subtle: 0 4px 20px rgba(0, 83, 85, 0.08);
            --shadow-medium: 0 8px 40px rgba(0, 83, 85, 0.12);
            --shadow-image: 0 8px 30px rgba(0, 83, 85, 0.15);

            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-medium: 0.4s ease;
            --transition-slow: 0.6s ease;
        }

        /* =============================================
           RESET & BASE STYLES
           ============================================= */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.6;
            color: var(--color-primary);
            background-color: var(--color-offwhite);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Focus States for Accessibility */
        :focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 3px;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        a:hover,
        a:focus {
            color: var(--color-secondary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* =============================================
           PAGE WRAPPER
           ============================================= */
        .page-wrapper {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* =============================================
           HERO SECTION
           ============================================= */
        .hero {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: var(--spacing-lg) var(--spacing-md);
            padding-bottom: var(--spacing-xl);
            position: relative;
            overflow: hidden;
            background: transparent linear-gradient(116deg, #004F51 0%, #003F41 50%, #004F51 100%) 0% 0% no-repeat padding-box;


            /* Gradient Background
            background: linear-gradient(155deg,
                    var(--color-primary) 0%,
                    var(--color-primary-dark) 40%,
                    #004547 70%,
                    var(--color-primary) 100%);
            */
        }

        /* Decorative Background Shapes */
        .hero::before,
        .hero::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::before {
            width: 700px;
            height: 700px;
            top: -250px;
            right: -200px;
            background: #003F41;
        }

        .hero::after {
            width: 500px;
            height: 500px;
            bottom: -150px;
            left: -150px;
            background: #004F51;
        }

        /* =============================================
           MAIN CONTENT CONTAINER
           ============================================= */
        .content-container {
            max-width: 900px;
            width: 100%;
            position: relative;
            z-index: 1;
            /* Fade-in Animation */
            animation: fadeInUp var(--transition-slow) ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =============================================
           MAIN CARD
           ============================================= */
        .card {
            background: var(--color-white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-medium);
            text-align: center;
            position: relative;
            margin-bottom: var(--spacing-lg);
            padding: 0 15px 30px 15px;
        }

        /* Accent Line at Top */
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--color-accent);
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            display: none;
        }

        /* =============================================
           BRAND / LOGO AREA
           ============================================= */
        .brand {
            margin-bottom: var(--spacing-lg);
            padding-top: var(--spacing-sm);
        }

        .brand-logo {
            font-family: var(--font-headline);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--color-primary);
            letter-spacing: 0.02em;
            margin-bottom: 0.15rem;
        }

        .brand-tagline {
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 300;
            color: var(--color-primary);
            opacity: 0.75;
            letter-spacing: 0.08em;
        }

        /* =============================================
           MAIN HEADLINE
           ============================================= */
        .headline {
            font-family: var(--font-headline);
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--color-primary);
            line-height: 1.3;
            margin-bottom: var(--spacing-md);
        }

        /* =============================================
           BODY TEXT
           ============================================= */
        .text-block {
            max-width: 850px;
            margin: 0 auto;
            text-align: left;
        }

        .intro-text {
            font-size: 1.05rem;
            font-weight: 400;
            color: var(--color-primary);
            margin-bottom: var(--spacing-md);
            line-height: 1.44;
            text-align: center;
        }

        .highlight-text {
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--color-primary);
            margin-bottom: var(--spacing-md);
            line-height: 1.44;
            padding: var(--spacing-md);
            border-left: 3px solid var(--color-accent);
            background: #FDFBF5;
        }

        .sub-text {
            font-size: 0.95rem;
            font-weight: 400;
            color: var(--color-text-muted);
            margin-bottom: var(--spacing-md);
            line-height: 1.6;
            text-align: center;
        }

        /* =============================================
           DIVIDER
           ============================================= */
        .divider {
            width: 60px;
            height: 2px;
            background: var(--color-accent);
            margin: var(--spacing-md) auto;
            border-radius: 2px;
        }

        /* =============================================
           CONTACT SECTION
           ============================================= */
        .contact {
            text-align: center;
            margin-top: var(--spacing-md);
        }

        .contact-label {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--color-text-muted);
            margin-bottom: var(--spacing-xs);
        }

        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-headline);
            font-size: 1rem;
            font-weight: 500;
            color: var(--color-primary);
            padding: var(--spacing-sm) var(--spacing-md);
            background: var(--color-accent);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        @media(min-width: 600px){
            .contact-email {
                font-size: 1.15rem;
            }
        }

        .contact-email:hover,
        .contact-email:focus {
            background: var(--color-accent-dark);
            color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(240, 224, 175, 0.4);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        /* =============================================
           IMAGE GALLERY
           ============================================= */
        .gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5px;
            /*gap: var(--spacing-md);*/
            margin-bottom: var(--spacing-md);
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-image);
        }
        
        .gallery-item:last-of-type {
            display: none;
        }
        


        .gallery-item img {
            width: 100%;
            object-fit: cover;
            aspect-ratio: 16/10;
        }



        /* Image overlay gradient */
        .gallery-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            /*background: linear-gradient(to top, rgba(0, 83, 85, 0.3) 0%, transparent 100%); */
            pointer-events: none;
            opacity: 0;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        /* =============================================
           LOCATION BADGES
           ============================================= */
        .locations-wrapper {
            text-align: center;
            margin-top: var(--spacing-sm);
        }

        .locations-label {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: var(--spacing-xs);
        }

        .locations {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--spacing-xs);
        }

        .location-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: var(--color-white);
            font-size: 0.85rem;
            font-weight: 400;
            padding: 0.5rem 1rem;
            border-radius: 18px;
            letter-spacing: 0.02em;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all var(--transition-fast);
        }

        .location-badge:hover {
           /* background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px); */
        }

        /* Light variant for badges inside card */
        .location-badge--light {
            background: var(--color-accent);
            color: var(--color-primary);
            border: none;
        }



        /* =============================================
           FOOTER
           ============================================= */
        .footer {
            text-align: center;
            padding: var(--spacing-md);
            background: var(--color-primary-dark);
        }

        .footer-text {
            font-size: 0.8rem;
            font-weight: 300;
            color: var(--color-white);
            opacity: 0.6;
        }

        /* =============================================
           RESPONSIVE STYLES
           ============================================= */

        /* Small Tablet */
        @media (min-width: 500px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }




        }

        /* Tablet and up */
        @media (min-width: 700px) {
            .hero {
                padding: var(--spacing-xl) var(--spacing-lg);
                padding-top: 30px;
            }

            .card {
                padding: var(--spacing-xl);
            }

            .brand-logo {
                font-size: 3rem;
            }

            .headline {
                font-size: 2.25rem;
            }

            .intro-text {
                font-size: 1.1rem;
                margin-right: 35px;
                margin-left: 35px;
            }

            .gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--spacing-md);
            }

            .gallery-item:last-child {
                grid-column: auto;
            }


        }

        /* Desktop */
        @media (min-width: 900px) {
            .card {
                padding: var(--spacing-xxl) var(--spacing-xl);
                padding-top: 0px;
            }

            .brand-logo {
                font-size: 3.25rem;
            }

            .headline {
                font-size: 2.5rem;
            }



            .hero::before {
                width: 711px;
                height: 711px;
                top: -236px;
                right: -350px;
            }

            .hero::after {
                width: 600px;
                height: 600px;
                bottom: -400px;
                left: -200px;
            }
        }

        /* Large Desktop */
        @media (min-width: 1100px) {
            .content-container {
                max-width: 1000px;
            }

            .brand-logo {
                font-size: 3.5rem;
            }
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Reduced Motion Preference */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            .card {
                border: 2px solid var(--color-primary);
            }

            .location-badge {
                border: 1px solid var(--color-white);
            }

            .gallery-item {
               /* border: 2px solid var(--color-primary); */
            }
        }

.logo-wrapper {
    width: 66%;
    margin: 0 auto;
    max-width: 290px;
}
@media(min-width: 1200px){
    .logo-wrapper {
        width: 32%;
    }
}