@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0b0b0b; /* True Dark Luxe */
    --primary-light: #161616;
    --accent-color: #c5a880; /* Champagne Gold */
    --accent-hover: #a3855c;
    --text-color: #2c2c2c;
    --text-muted: #888888;
    --bg-light: #faf9f6; /* Ivory White */
    --bg-white: #ffffff;
    --border-color: #e6e4df; /* Fine border color */
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-luxe: 0 15px 45px rgba(0, 0, 0, 0.04);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.text-gold {
    color: var(--accent-color);
}

/* Premium Layout & Components */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.0);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    height: 80px;
}

.logo a {
    display: flex;
    flex-direction: column;
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 0.9;
}

.logo a span {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    color: var(--primary-color);
}

/* White headers text when overlaying dark hero */
.index-page .site-header:not(.scrolled) .nav-link {
    color: #ffffff;
}
.index-page .site-header:not(.scrolled) .logo a {
    color: #ffffff;
}

/* Sub-page header always solid white */
.sub-page .site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

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

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: var(--transition-fast);
}

.index-page .site-header:not(.scrolled) .mobile-menu-btn span {
    background-color: #ffffff;
}

/* Hero Slider Section */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    z-index: 1;
}

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

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-item.active .slide-bg-image {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.slide-content-box {
    position: relative;
    z-index: 3;
    color: var(--bg-white);
    max-width: 750px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.slide-item.active .slide-content-box {
    transform: translateY(0);
    opacity: 1;
}

.slide-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.15;
    color: var(--bg-white);
    word-break: keep-all;
}

.slide-description {
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.8;
    font-weight: 300;
    max-width: 550px;
}

/* Mouse Scroll Down Icon */
.scroll-down-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: var(--transition-fast);
}
.scroll-down-icon:hover {
    opacity: 1;
}
.scroll-down-icon .mouse {
    width: 24px;
    height: 38px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}
.scroll-down-icon .wheel {
    width: 2px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 1px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.8s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid var(--accent-color);
    background-color: transparent;
    color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-premium:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-premium:hover::before {
    left: 0;
}

.btn-premium-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-premium-dark::before {
    background-color: var(--primary-color);
}

.btn-premium-dark:hover {
    color: var(--bg-white);
}

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

.btn-premium-gold::before {
    background-color: var(--primary-color);
}

.btn-premium-gold:hover {
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Slider Controls */
.slider-arrows {
    position: absolute;
    bottom: 50px;
    right: 40px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(11, 11, 11, 0.5);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(11, 11, 11, 0.8);
    transform: scale(1.05);
}

.slider-dots {
    position: absolute;
    bottom: 50px;
    left: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    width: 35px;
    border-radius: 4px;
}

/* Sections styling */
.section-padding {
    padding: 120px 0;
}

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

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

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

/* Categories Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.category-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-light);
    box-shadow: var(--shadow-subtle);
}

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

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
    transition: var(--transition-smooth);
    z-index: 2;
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    color: var(--bg-white);
    z-index: 3;
    transition: var(--transition-smooth);
}

.category-card-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.category-card-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.category-card-link svg {
    transition: var(--transition-smooth);
}

.category-card:hover .category-card-img {
    transform: scale(1.06);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.92) 100%);
}

.category-card:hover .category-card-link svg {
    transform: translateX(8px);
}

/* Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 50px 40px;
}

.product-card {
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* Premium portrait aspect ratio */
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-action {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 16px 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    transition: var(--transition-smooth);
    z-index: 3;
}

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

.product-card:hover .product-card-img-wrapper {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-luxe);
}

.product-card:hover .product-card-img {
    transform: scale(1.06);
}

.product-card:hover .product-card-action {
    bottom: 0;
}

.product-card-info {
    padding: 24px 0 10px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.product-card-sku {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Product Detail Page */
.detail-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 80px;
    margin-top: 40px;
}

/* Gallery Slider */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-thumb-item {
    position: relative;
    padding-top: 100%;
    border: 1px solid var(--border-color);
    cursor: pointer;
    overflow: hidden;
    background-color: var(--bg-light);
    transition: var(--transition-fast);
}

.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--accent-color);
}

.gallery-thumb-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.detail-sku {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    letter-spacing: 1px;
}

.detail-desc {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Specifications Table */
.detail-specs {
    margin-bottom: 40px;
}

.specs-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 5px;
    display: inline-block;
    letter-spacing: 1px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 14px 0;
    font-size: 14px;
}

.specs-table td.spec-name {
    font-weight: 600;
    color: var(--primary-color);
    width: 40%;
}

.specs-table td.spec-val {
    color: var(--text-muted);
}

/* Inquiry Box / Contact Action */
.inquiry-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 0;
    margin-top: 20px;
    box-shadow: var(--shadow-subtle);
}

.inquiry-box-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 400;
}

.inquiry-box-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.inquiry-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #0b0b0b;
    color: #ffffff;
    border: 1px solid #0b0b0b;
    padding: 16px 0;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top:0; left:0; width:0; height:100%;
    background-color: #25d366;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-whatsapp:hover {
    color: #ffffff;
    border-color: #25d366;
}

.btn-whatsapp:hover::before {
    width: 100%;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}
.floating-whatsapp::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 1px solid #25d366;
    border-radius: 50%;
    animation: ripple 1.8s infinite ease-in-out;
    z-index: -1;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Inquiry Popup Modal styling */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.inquiry-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-white);
    width: 90%;
    max-width: 580px;
    padding: 50px;
    border-radius: 0;
    box-shadow: var(--shadow-luxe);
    position: relative;
    transform: translateY(40px);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.inquiry-modal.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

/* Form Styling */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: var(--font-sans);
    transition: var(--transition-fast);
    border-radius: 0;
}

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

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Alert Boxes styling */
.alert {
    padding: 18px 24px;
    margin-bottom: 30px;
    font-size: 14px;
    border-radius: 0;
}
.alert-success {
    background-color: #f4f8f5;
    color: #275b39;
    border: 1px solid #d4e8da;
}
.alert-danger {
    background-color: #fdf6f6;
    color: #8c2a2a;
    border: 1px solid #f9d8d8;
}

/* Footer layout */
.site-footer {
    background-color: var(--primary-color);
    color: #8e8e8e;
    padding: 100px 0 40px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-title {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bg-white);
    margin-bottom: 30px;
    font-weight: 500;
}

.footer-text {
    line-height: 1.9;
    font-weight: 300;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    transition: var(--transition-fast);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.6);
}

.social-icon:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* General Page Layout helpers */
.page-hero {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 0;
}

.page-hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
}

.breadcrumbs {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

/* Dynamic Page Content template markup style */
.page-content-wrapper {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.rich-content h1, .rich-content h2, .rich-content h3 {
    font-family: var(--font-serif);
    margin: 40px 0 20px;
    font-weight: 400;
}

.rich-content h2 { font-size: 32px; }
.rich-content h3 { font-size: 24px; }

.rich-content p {
    margin-bottom: 25px;
    color: #444;
    line-height: 1.9;
    font-size: 16px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .header-container {
        height: 80px;
    }
    
    .site-header.scrolled .header-container {
        height: 70px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .site-header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    /* On mobile list links must remain dark regardless of scroll */
    .site-header:not(.scrolled) .nav-link {
        color: var(--primary-color);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .slide-title {
        font-size: 38px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
}
