* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --navy-blue: #0a1f44;
    --navy-blue-light: #1a3a66;
    --gold: #d4af37;
    --gold-light: #f0d56c;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-gray: #6c757d;
    --text-dark: #2c3e50;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-cursive: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.btn-primary:hover {
    background-color: var(--navy-blue-light);
    border-color: var(--navy-blue-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.btn-secondary:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy-blue);
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 31, 68, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 5%  10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    position: relative;
    padding-left: 15px;
    
    opacity: 1;
    animation: slideDownFade 0.8s ease-out forwards;
}

.logo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 3px;
    height: 40px;
    background-color: var(--gold);
}

.logo h1 {
    font-family: var(--font-cursive);
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===== Navigation ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav > a,
.dropdown {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.main-nav > a:hover {
    color: var(--gold);
}

.main-nav > a:hover::after {
    width: 100%;
}

/* ===== Dropdown Menu ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: block;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.dropdown:hover .dropdown-toggle {
    color: var(--gold);
}

.dropdown:hover .dropdown-toggle::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--navy-blue);
    min-width: 180px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--navy-blue);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 30px;
}

/* ===== Hamburger Menu ===== */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ===== Mobile Menu Styles ===== */
@media (max-width: 992px) {
    .header {
        padding: 15px 20px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--navy-blue);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 100px 0 40px;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .main-nav > a,
    .dropdown {
        width: 100%;
        padding: 20px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav > a::after,
    .dropdown-toggle::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        max-height: none;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 14px 40px 14px 22px;
        position: relative;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
    }

    .dropdown-menu a::before {
        content: '';
        position: absolute;
        left: 5px;
        top: 50%;
        width: 12px;
        height: 2px;
        background-color: var(--gold);
        transform: translateY(-50%);
    }

    .dropdown-menu a:hover {
        color: var(--gold);
        background: none;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        transform-origin: center;
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        transform-origin: center;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    height: 65vh;
    background-image: url('../images/2017_winter_zins2_photo1.gif');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.9) 0%, rgba(10, 31, 68, 0.1) 100%);
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    transform: translateY(40px);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 768px) {
    .hero {
        background-position: 73% center;
        height: 55vh;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

/* ===== Introduction Section ===== */
.introduction {
    padding: 100px 0;
    background-color: var(--white);
}

.introduction h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--navy-blue);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.introduction h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.introduction > .container > p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: justify;
}

.intro-image {
    max-width: 900px;
    margin: 0 auto;
}

.intro-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    /* border-radius: 8px; */
    border: 10px solid var(--gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .introduction {
        padding: 60px 0;
    }

    .introduction h2 {
        font-size: 36px;
    }

    .intro-image img {
        height: 300px;
    }
}

/* ===== Philosophy Section ===== */
.philosophy {
    padding: 60px 0 60px;
    background-color: var(--off-white);
}

.philosophy h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--navy-blue);
    margin-bottom: 40px;
    text-align: center;
}

.philosophy p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: justify;
}

@media (max-width: 768px) {
    .philosophy {
        padding: 60px 0;
    }

    .philosophy h2 {
        font-size: 36px;
    }
}

/* ===== Core Principles Section ===== */
.core-principles {
    padding: 100px 0;
    background-color: var(--navy-blue);
}

.core-principles h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 60px;
    text-align: center;
}

.core-principles > .container > p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.principle-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    height: auto; /* 450 */
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.principle-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.principle-card:hover .principle-icon {
    transform: scale(1.1);
    color: var(--gold-light);
}

.principle-icon svg {
    width: 100%;
    height: 100%;
}

.principle-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 20px;
}

.principle-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.principles-conclusion {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
}

.principles-conclusion p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--white);
    margin: 0;
    text-align: justify;
}

@media (max-width: 992px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .core-principles {
        padding: 60px 0;
    }

    .core-principles h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .principle-card {
        padding: 30px 25px;
    }

    .principles-conclusion {
        padding: 30px 25px;
    }
}

/* iPad Pro (and similar iPad widths): force 2 cards per row */
@media (min-width: 768px) and (max-width: 1366px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Call to Action Section ===== */
.call-to-action {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-blue-light) 0%, var(--navy-blue) 100%);
    text-align: center;
}

.call-to-action h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 30px;
}

.call-to-action p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .call-to-action {
        padding: 60px 0;
    }

    .call-to-action h2 {
        font-size: 36px;
    }

    .call-to-action p {
        font-size: 16px;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-family: var(--font-cursive);
    font-size: 32px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

/* ===== Social Media Icons ===== */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== UPDATED Scroll to Top Button (Gold & Navy) ===== */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold); 
    color: var(--navy-blue); 
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 31, 68, 0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#scrollTopBtn:hover {
    background-color: var(--gold-light);;
    transform: translateY(-3px);
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring__circle {
    transition: stroke-dashoffset 0.1s;
    transform-origin: 50% 50%;
    stroke: var(--navy-blue);
}

.arrow-content {
    width: 24px;
    height: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-content svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    #scrollTopBtn {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 20px;
        opacity: 0.85;
    }
}