/* Homepage Navigation and Footer Styles - Extracted from Zephoric Homepage */

/* CSS Variables */
:root {
    --gold: #956d46;
    --white: #FFFFFF;
    --black: #000000;
    --marble-white: #FAFAFA;
    --zephoric-navy: #1B365D;
    --gold-mask: url('../assets/images/styling/goldelementclippingmask.png');
}

/* HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.hide {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.hamburger {
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: var(--gold);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo-container {
    height: 40px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.logo {
    height: 100%;
    width: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-default {
    opacity: 1;
}

.logo-hover {
    opacity: 0;
}

.logo-container:hover .logo-default {
    opacity: 0;
}

.logo-container:hover .logo-hover {
    opacity: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.15s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-2px);
}

/* Menu Dropdown */
.menu-dropdown {
    position: absolute;
    top: 80%;
    left: 3rem;
    background: transparent;
    padding: 0.25rem 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.menu-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: 0.1em;
    padding: 0.25rem 0;
    transition: color 0.15s ease;
}

.menu-link:hover {
    color: var(--gold);
}

/* FOOTER STYLES */
.luxury-footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #142130 50%, #1b2838 100%);
    color: var(--white);
    padding: 0;
    margin: 0;
    position: relative;
}

.luxury-footer::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right,
        transparent 0%,
        #77522e 30%,
        #77522e 70%,
        transparent 100%);
}

.footer-hero {
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    margin: 0;
    position: relative;
    padding-top: calc(1.5rem + 2rem);
}

.footer-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right,
        transparent 0%,
        #77522e 30%,
        #77522e 70%,
        transparent 100%);
}

.footer-headline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.headline-bar {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
}

.headline-bar:first-child {
    background: linear-gradient(to left, transparent 0%, var(--gold) 50%, transparent 100%);
}

.footer-headline {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin: 0;
    padding: 0;
    line-height: 1;
}

.footer-pillars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.pillar {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--white);
    line-height: 1;
}

.pillar-dot {
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-main {
    padding: 0;
    margin-top: 0.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-bottom {
    position: relative;
    padding: 0.5rem 0 2rem 0;
}

.legal-badge-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.75rem !important;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-badge img {
    width: 40px;
    height: 40px;
}

.security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem !important;
}

.security-badge svg {
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .footer-headline {
        font-size: 2rem;
    }

    .headline-bar {
        width: 50px;
    }
}
