/* css/style.css - Aura Marin Premium Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #060b13;
    --bg-card: rgba(15, 27, 47, 0.7);
    --bg-card-hover: rgba(23, 41, 71, 0.9);
    --primary: #c5a880;
    /* Teak Gold */
    --primary-hover: #dfb76c;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --glass-border: rgba(197, 168, 128, 0.15);
    --glass-border-hover: rgba(197, 168, 128, 0.4);
    --font-sans: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #03060a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navbar */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 11, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    margin-top: -4px;
}

nav.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav.main-nav a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav.main-nav a:hover {
    color: var(--primary);
}

nav.main-nav a:hover::after,
nav.main-nav li.active a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
}

/* Hero / Slider Text Styles */
.hero-subtitle {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Showcase Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Category Badge (used in product-detail.php) */
.product-cat {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.filter-btn {
    background: rgba(15, 27, 47, 0.4);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    color: var(--text-light);
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

/* Contact Info & Forms */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 8px;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h4 {
    color: var(--primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 48px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: rgba(6, 11, 19, 0.6);
    border: 1px solid var(--glass-border);
    padding: 14px 18px;
    color: var(--text-light);
    font-family: var(--font-sans);
    border-radius: 4px;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.2);
}

/* Footer Section */
footer.site-footer {
    background: #03060a;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary);
}

/* Split & Form Grid Utilities for responsiveness */
.split-grid-1-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-grid-2-1 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.philosophy-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 20px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Floating WhatsApp Button & Footer Additions */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
    color: white;
}

.footer-seo-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-seo-links a {
    color: var(--text-muted);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.footer-seo-links a:hover {
    color: var(--primary);
}

.ssl-secured {
    color: #10b981 !important;
    /* Green */
    font-weight: 600;
}

.rss-link {
    color: #f59e0b !important;
    /* RSS Orange */
    font-weight: 600;
}

/* ==========================================
   Hero Slider Section
   ========================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(6, 11, 19, 0.55), rgba(6, 11, 19, 0.85));
    z-index: 2;
}

.slide-item.no-content::before {
    display: none;
}

.slide-item.active {
    opacity: 1;
    z-index: 3;
}

.slide-content-wrapper {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    padding: 0 24px;
    margin-top: 90px;
}

.slide-item.active .hero-subtitle {
    animation: fadeInUp 0.8s 0.2s both;
}

.slide-item.active .hero-title {
    animation: fadeInUp 0.8s 0.4s both;
}

.slide-item.active .hero-desc {
    animation: fadeInUp 0.8s 0.6s both;
}

.slide-item.active .btn-slide {
    animation: fadeInUp 0.8s 0.8s both;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(15, 27, 47, 0.4);
    border: 1px solid var(--glass-border);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.slider-arrow-prev {
    left: 30px;
}

.slider-arrow-next {
    right: 30px;
}

@media(max-width: 768px) {
    .slider-arrow {
        display: none;
    }
}

/* ==========================================
   Gallery & Lightbox
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    background: #03060a;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 11, 19, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    color: var(--primary);
    font-size: 20px;
    background: rgba(6, 11, 19, 0.85);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 11, 19, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    background: rgba(15, 27, 47, 0.6);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    user-select: none;
}

.lightbox-arrow:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@media (max-width: 768px) {
    .header-container {
        height: 80px;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    nav.main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(6, 11, 19, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        padding: 110px 40px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        display: block;
    }

    nav.main-nav.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

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

    nav.main-nav a {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    nav.main-nav .mobile-only-item {
        display: block !important;
        width: 100%;
    }

    .hero-slider {
        height: 35vh;
    }

    .hero-slider video {
        object-position: center;
        object-fit: cover;
    }

    .slide-content-wrapper {
        margin-top: 0;
        padding: 0 16px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .hero-desc {
        display: none;
    }

    .btn-slide {
        padding: 8px 20px !important;
        font-size: 11px !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .split-grid-1-2,
    .split-grid-2-1 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .philosophy-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        max-width: 240px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-float {
        padding: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float span {
        display: none;
    }

    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .features-grid {
        margin-top: 30px;
    }
}