/* --- Variables & Reset --- */
:root {
    --olive-green: #556B2F;
    --warm-taupe: #B38B6D;
    --rich-navy: #1A2B49; /* Deep Navy Blue */
    --deep-charcoal: #333333;
    --vibrant-orange: #FF6F00;
    --white: #ffffff;
    --light-bg: #57a8b6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--deep-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Ad Disclaimer --- */
.ad-disclaimer-top {
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

/* --- Loader --- */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--rich-navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid var(--vibrant-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    color: var(--white);
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Header --- */
header {
    background-color: var(--rich-navy); /* Requested dark theme */
    color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--vibrant-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--vibrant-orange);
}

.shop-btn {
    background-color: var(--vibrant-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

.shop-btn:hover {
    background-color: #e65100;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    background: linear-gradient(135deg, var(--warm-taupe) 0%, var(--olive-green) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 10;          /* Higher z-index ensures it stays above the images */
    color: var(--white);
    position: relative;    /* Required for z-index to work */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    display: inline-block; /* Ensures proper spacing and hit area */
    background-color: var(--rich-navy);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    z-index: 20;           /* Highest priority for the button */
}

.cta-button:hover {
    background-color: var(--deep-charcoal);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero-visuals {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;           /* Lower z-index so it stays behind the text/button */
}

.product-img {
    position: absolute;
    width: 80%;           /* Adjust width */
    max-width: 450px;     
    height: 450px;        /* FIXED HEIGHT to remove long white space */
    object-fit: contain;  /* Keeps the shoe from stretching */
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: 0.5s;
    border-radius: 20px;
}

.img-1 {
    z-index: 2;
   
}



@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px) scale(0.8) rotate(-15deg); }
    50% { transform: translateY(20px) scale(0.8) rotate(-10deg); }
    100% { transform: translateY(0px) scale(0.8) rotate(-15deg); }
}

/* --- Sections Common --- */
.section-padding {
    padding: 80px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--deep-charcoal);
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 3rem;
    color: var(--vibrant-orange);
    margin-bottom: 20px;
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--olive-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
}

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 15px;
    color: #555;
}

/* --- Footer --- */
footer {
    background-color: var(--deep-charcoal);
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links a, .footer-legal button {
    display: block;
    color: #ccc;
    margin-bottom: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    padding: 0;
}

.footer-links a:hover, .footer-legal button:hover {
    color: var(--vibrant-orange);
}

.consumer-notice {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden */
    width: 75%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu.active {
    right: 0;
}

.close-icon {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.m-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-charcoal);
}

.shop-btn-mobile {
    display: block;
    text-align: center;
    background: var(--vibrant-orange);
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

/* --- Modals --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Cookie Popup --- */
.cookie-popup {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--deep-charcoal);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 5000;
    transition: bottom 0.5s;
    flex-wrap: wrap;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#accept-cookies { background: var(--vibrant-orange); color: #fff; }
#reject-cookies { background: #555; color: #fff; }

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .nav-links, .shop-btn { display: none; }
    .hamburger { display: flex; }
    
    .hero { flex-direction: column; text-align: center; height: auto; padding-top: 50px; padding-bottom: 50px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-visuals { height: 400px; width: 100%; }
    .img-2 { display: none; } /* Show only one big image on mobile */
    .img-1 { width: 90%; position: relative; }
    
    .faq-question { font-size: 1rem; }
}