/* 
   Healthy Heel Luxurious Design System 
   Colors: Charcoal, White, Champagne Gold
   Fonts: Playfair Display (Headings), Inter (Body)
*/

:root {
    --color-charcoal: #1a1a1a;
    --color-charcoal-light: #2c2c2c;
    --color-white: #ffffff;
    --color-offwhite: #f8f8f8;
    --color-gold: #c5a059;
    --color-gold-hover: #b08c48;
    --color-gray: #666666;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-charcoal);
}

/* Top Banner */
.top-banner {
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 1001;
    position: relative;
    letter-spacing: 0.5px;
}
.top-banner a:hover {
    opacity: 0.8;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-top {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding: 8px 5%;
    text-align: right;
    font-size: 0.85rem;
}

.header-top a {
    color: var(--color-gold);
    margin: 0 10px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--color-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav>ul>li>a {
    color: var(--color-charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav>ul>li>a:hover {
    color: var(--color-gold);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.dropdown-menu.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 500px;
    padding: 15px;
    gap: 5px;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--color-offwhite);
    color: var(--color-gold);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: -10px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-charcoal);
    color: var(--color-white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-charcoal);
}

.btn:hover {
    background: transparent;
    color: var(--color-charcoal) !important;
}

.btn-gold {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--color-gold) !important;
}

/* Main Content Area */
main {
    margin-top: 130px;
    /* Offset for fixed header */
    min-height: 60vh;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 4rem;
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h4 {
    font-size: 1.5rem;
    color: black;
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
    /* Solid white border shield */
}


.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Standard Section */
.section {
    padding: 100px 5%;
}

.section-bg-light {
    background-color: var(--color-offwhite);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-gold);
    margin: 20px auto 0;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.card {
    background: var(--color-white);
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Footer */
.site-footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: 80px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--color-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section ul {
    color: #cccccc;
    margin-bottom: 15px;
    list-style: none;
}

.footer-section a {
    color: #cccccc;
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-gold);
}

.main-nav>ul>li>a.active {
    border-bottom: 2px solid var(--color-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-badges img {
    height: 50px;
    margin-right: 15px;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-charcoal);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        height: -webkit-fill-available;
        background: var(--color-white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        display: block !important;
        padding: 80px 20px 120px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .main-nav>ul>li {
        width: 100%;
    }

    .main-nav>ul>li>a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 20px;
        border-left: 2px solid var(--color-gold);
        margin-top: 10px;
    }

    .dropdown-menu.two-column {
        display: none; /* Overrides desktop grid */
        min-width: auto;
        padding: 0 0 0 20px;
    }

    .dropdown.active > .dropdown-menu,
    .dropdown.active > .dropdown-menu.two-column {
        display: block;
    }

    .dropdown-submenu>.dropdown-menu {
        margin-top: 5px;
        padding-left: 15px;
        border-left: 1px dashed var(--color-gold);
        display: none;
    }

    .dropdown-submenu.active>.dropdown-menu {
        display: block;
    }
}

/* Floating Action Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.floating-scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: var(--color-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.floating-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-scroll-top svg {
    width: 25px;
    height: 25px;
}

.floating-scroll-top:hover {
    background-color: #b58c42;
    color: white;
}


/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    /* Start hidden */
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    z-index: 9999;
    padding: 15px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    transition: bottom 0.5s ease-in-out;
    visibility: hidden;
}

.cookie-banner.show {
    bottom: 0;
    visibility: visible;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--color-white);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content button {
        width: 100%;
    }
}
/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-scale {
    transform: scale(0.95);
}
