* {
    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;
}

/* ===== 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;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0 120px;
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-intro h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--navy-blue);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.contact-intro 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%);
}

.contact-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-top: 30px;
}

/* ===== Contact Wrapper - Two Column Layout ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===== Contact Info Panel ===== */
.contact-info-panel {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

.info-content {
    position: relative;
    z-index: 1;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    color: var(--gold);
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-content > p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* ===== Contact Details ===== */
.contact-details {
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.detail-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.detail-text a {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: var(--gold-light);
}

/* ===== Decorative Quote ===== */
.decorative-quote {
    position: relative;
    padding: 30px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    margin-top: 40px;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.decorative-quote p {
    font-family: var(--font-cursive);
    font-size: 18px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.quote-author {
    display: block;
    font-size: 14px;
    color: var(--gold);
    text-align: right;
    font-weight: 500;
}

/* ===== Form Panel ===== */
.form-panel {
    padding: 60px 50px;
    background-color: var(--white);
}

/* ===== Form Styles ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-blue);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 16px 20px;
    border: 2px solid rgba(10, 31, 68, 0.1);
    border-radius: 6px;
    background-color: var(--off-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(108, 117, 125, 0.5);
}

.form-group textarea {
    resize: none;
    min-height: 180px;
}

/* ===== Submit Button ===== */
.btn-submit {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 45px;
    background-color: var(--navy-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        padding: 50px 40px;
    }

    .form-panel {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 80px;
    }

    .contact-intro {
        margin-bottom: 50px;
    }

    .contact-intro h2 {
        font-size: 36px;
    }

    .contact-intro p {
        font-size: 16px;
    }

    .contact-info-panel {
        padding: 40px 30px;
    }

    .form-panel {
        padding: 40px 30px;
    }

    .info-content h3 {
        font-size: 28px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ===== 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;
    }
}