@charset "UTF-8";

/*
Theme Name: Ted Strauss
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.9
Requires PHP: 5.6
Version: 2.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

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

        body {
            font-family: 'Nunito Sans', sans-serif;
            background: #f4f7fb;
        }

        /* ============================
           HEADER
        ============================ */
        #mainHeader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;

            /* START: fully transparent */
            background: transparent;
            box-shadow: none;

            /* smooth color change */
            transition: background 0.4s ease, box-shadow 0.4s ease;
        }

        /* This class is added by JS when user scrolls down */
        #mainHeader.scrolled {
            background: linear-gradient(90deg, #172d56 0%, #1e3a6a 55%, #2d5080 100%);
            box-shadow: 0 4px 24px rgba(20, 44, 90, 0.5);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
            height: 66px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .brand {
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.7);
            padding: 7px 14px;
            border-radius: 5px;
            white-space: nowrap;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
            flex: 1;
            justify-content: end;
        }
        .nav-links > li > a {
            font-weight: 600;
            font-size: 0.93rem;
            color: #fff;
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }
        .nav-links > li > a:hover {
            background: rgba(255,255,255,0.15);
        }

        /* Dropdown */
        .dropdown { position: relative; }
        .dropdown-toggle svg {
            width: 11px; height: 11px;
            fill: none; stroke: currentColor; stroke-width: 2.5;
            transition: transform 0.25s;
        }
        .dropdown:hover > a svg { transform: rotate(180deg); }
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%) translateY(-8px);
            background: #1e3560;
            border-radius: 8px;
            min-width: 170px;
            list-style: none;
            padding: 6px 0;
            box-shadow: 0 10px 32px rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
            transition: opacity 0.2s, transform 0.2s, visibility 0s;
        }
        .dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            font-size: 0.88rem;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.15s, padding-left 0.15s;
        }
        .dropdown-menu li a:hover {
            background: rgba(255,255,255,0.1);
            color: #fff;
            padding-left: 26px;
        }

        .btn-book {
            font-weight: 700;
            font-size: 0.78rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #fff;
            background: #1e3560;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none;
            flex-shrink: 0;
            transition: background 0.2s;
        }
        .btn-book:hover { background: #152847; }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        .hamburger span {
            display: block;
            width: 24px; height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform 0.3s, opacity 0.3s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            background: #1e3560;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }
        .mobile-menu.open { max-height: 480px; }
        .mobile-menu ul { list-style: none; padding: 8px 0 4px; }
        .mobile-menu ul li a {
            display: block;
            padding: 11px 28px;
            color: rgba(255,255,255,0.88);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.96rem;
            border-left: 3px solid transparent;
            transition: background 0.15s, border-color 0.15s;
        }
        .mobile-menu ul li a:hover {
            background: rgba(255,255,255,0.07);
            border-left-color: #fff;
            color: #fff;
        }
        .mobile-menu .btn-book-mobile {
            display: inline-block;
            margin: 6px 28px 16px;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #fff;
            background: #1e3560;
            padding: 10px 22px;
            border-radius: 6px;
            text-decoration: none;
        }

        @media (max-width: 820px) {
            .nav-links, .btn-book { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: block; }
        }

        /* ============================
           HERO IMAGE
        ============================ */
        .hero {
            width: 100%;
        }
        .hero img {
            display: block;
            width: 100%;
            height: 800px;
            object-fit: cover;
            object-position: center top;
        }

        /* ============================
           PAGE CONTENT
        ============================ */
        .page-content {
            padding: 80px 40px;
            max-width: 900px;
            margin: 0 auto;
        }
        .page-content h2 { font-size: 2rem; color: #1e3560; margin-bottom: 20px; }
        .page-content p { margin-bottom: 16px; color: #555; line-height: 1.8; }

        /* ============================
           FOOTER
        ============================ */
        :root {
            --blue-dark: #2d5070; --blue-mid: #3a6186; --blue-light: #4a74a0;
            --copper-dark: #8b4a1c; --copper-mid: #a85e28; --copper-light: #c87941;
            --wf: #fff; --w8: rgba(255,255,255,.80); --w5: rgba(255,255,255,.55);
            --w4: rgba(255,255,255,.40); --w1: rgba(255,255,255,.18);
            --w10: rgba(255,255,255,.10); --w08: rgba(255,255,255,.08);
        }
        footer { background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-mid) 40%, var(--blue-dark) 100%); border-top: 1px solid var(--w1); }
        .footer-topline { height: 3px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.38) 50%, transparent); }
        .footer-inner { max-width: 1200px; margin: 0 auto; padding: 52px 40px 40px; }
        .footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
        .footer-brand { display: flex; flex-direction: column; gap: 8px; }
        .footer-brand-name { font-size: 1.55rem; font-weight: 700; color: var(--wf); }
        .footer-brand-tagline { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--w5); }
        .footer-brand-desc { margin-top: 8px; font-size: 0.87rem; line-height: 1.65; color: var(--w5); max-width: 280px; }
        .footer-nav { display: flex; gap: 56px; flex-wrap: wrap; }
        .footer-nav-col h4 { font-size: 0.70rem; font-weight: 800; letter-spacing: 0.20em; text-transform: uppercase; color: var(--w4); margin-bottom: 16px; }
        .footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
        .footer-nav-col ul li a { font-size: 0.90rem; font-weight: 600; color: var(--w8); text-decoration: none; display: inline-block; transition: color 0.2s, padding-left 0.2s; }
        .footer-nav-col ul li a:hover { color: var(--wf); padding-left: 5px; }
        .footer-cta-bar { display: flex; align-items: center; justify-content: center; gap: 28px; padding: 28px 0; border-top: 1px solid var(--w10); border-bottom: 1px solid var(--w10); margin-bottom: 36px; flex-wrap: wrap; }
        .btn-ghost { font-weight: 700; font-size: 0.87rem; color: var(--wf); background: var(--w08); border: 1.5px solid rgba(255,255,255,.30); padding: 12px 34px; border-radius: 8px; text-decoration: none; text-align: center; white-space: nowrap; transition: background 0.2s, transform 0.15s; }
        .btn-ghost:hover { background: var(--w1); transform: translateY(-2px); }
        .btn-cta { font-weight: 800; font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wf); background: linear-gradient(135deg, var(--copper-light), var(--copper-mid), var(--copper-dark)); border: none; padding: 15px 44px; border-radius: 50px; text-decoration: none; min-width: 300px; text-align: center; white-space: nowrap; box-shadow: 0 4px 22px rgba(168,94,40,.50); transition: transform 0.15s, filter 0.2s; }
        .btn-cta:hover { transform: translateY(-2px); filter: brightness(1.07); }
        .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
        .footer-copy { font-size: 0.78rem; color: var(--w4); }
        .footer-social { display: flex; gap: 10px; }
        .social-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--w08); border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.60); text-decoration: none; transition: background 0.2s, color 0.2s, transform 0.15s; }
        .social-icon svg { width: 15px; height: 15px; fill: currentColor; }
        .social-icon:hover { background: var(--w1); color: var(--wf); transform: translateY(-2px); }
        .footer-legal { display: flex; gap: 20px; }
        .footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color 0.2s; }
        .footer-legal a:hover { color: var(--w8); }

        @media (max-width: 768px) {
            .footer-inner { padding: 40px 24px 32px; }
            .footer-top { flex-direction: column; gap: 32px; }
            .footer-nav { gap: 32px; }
            .footer-cta-bar { gap: 16px; flex-direction: column; align-items: center; }
            .btn-cta { min-width: unset; width: 100%; max-width: 360px; }
            .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
        }