/*
Theme Name: Quantum Watches
Theme URI: https://www.worldofquantum.com
Author: Quantum
Author URI: https://www.worldofquantum.com
Description: Performance-focused WordPress theme for Quantum watches. Features Japanese Miyota automatic movements, precision engineering, and modern design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bespoke-watch-shop
Tags: luxury, dark, watches, ecommerce, custom-post-type, black, gold, quantum, automatic
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    color: #e5e5e5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #f4d03f;
    opacity: 0.8;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-logo {
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.site-logo a {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-navigation {
    width: 100%;
}

.main-navigation a {
    color: #e5e5e5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.main-navigation a:hover::before {
    opacity: 1;
}

.main-navigation a:active {
    background: rgba(212, 175, 55, 0.15);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    padding: 4rem 1rem 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    line-height: 1.2;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
    padding: 0 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.hero-buttons .btn {
    min-width: 160px;
    text-align: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #b8b8b8;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
    padding: 0 1rem;
}

.hero-scroll-indicator svg {
    color: #d4af37;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #d4af37;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn:hover {
    background-color: #f4d03f;
    border-color: #f4d03f;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

.btn-outline:hover {
    background-color: #d4af37;
    color: #000000;
}

/* Featured Section */
.featured-section {
    padding: 4rem 1rem;
    background-color: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 1rem auto 0;
}

/* Watch Grid */
.watch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.watch-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.watch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.watch-card a {
    position: relative;
    display: block;
}

.watch-source-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: rgba(0, 0, 0, 0.85);
    color: #d4af37;
    padding: 0.25rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 4px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.watch-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #0a0a0a;
}

.watch-card-content {
    padding: 1.5rem;
}

.watch-brand {
    font-size: 0.875rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.watch-title {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.watch-price {
    font-size: 1.125rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

/* Add Euro symbol before price - same size as price */
.watch-price::before {
    content: '€';
    font-size: 1.125rem;
    vertical-align: baseline;
    margin-right: 0.3rem;
}


.watch-stock {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    font-weight: 600;
}

.watch-stock.in-stock {
    background-color: rgba(46, 125, 50, 0.2);
    color: #66bb6a;
    border: 1px solid #66bb6a;
}

.watch-stock.sold {
    background-color: rgba(244, 67, 54, 0.2);
    color: #ef5350;
    border: 1px solid #ef5350;
}

.watch-stock.on-hold {
    background-color: rgba(255, 152, 0, 0.2);
    color: #ffa726;
    border: 1px solid #ffa726;
}

/* Single Watch Page */
.single-watch-header {
    padding: 3rem 1rem;
    background-color: #0a0a0a;
}

.watch-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1rem;
}

.watch-image-container {
    position: relative;
}

.watch-image-zoom-wrapper {
    position: relative;
    overflow: visible;
    cursor: default;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    touch-action: pan-y;
}

.watch-image-zoom-wrapper:hover .watch-image-large {
    opacity: 0.7;
}

.watch-image-zoom-wrapper:hover .zoom-icon {
    opacity: 0;
}

/* Magnifying Glass */
.magnifying-glass {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    background-color: #ffffff;
    box-shadow: 
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    z-index: 1000;
    overflow: visible;
    transform: translate(-50%, -50%);
    transition: box-shadow 0.3s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.magnifying-glass:active,
.magnifying-glass.grabbing {
    cursor: grabbing;
}

.magnifying-glass:hover:not(:active) {
    box-shadow: 
        0 0 0 2px rgba(0, 0, 0, 0.3),
        0 6px 24px rgba(212, 175, 55, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.magnifying-glass-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    filter: brightness(1.05);
    overflow: hidden;
}

/* Magnifying Glass Handle */
.magnifying-glass::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) rotate(25deg);
    width: 8px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        #d4af37 0%,
        #b8941f 30%,
        #8b6f0f 50%,
        #6b5510 70%,
        #4a3a0b 100%
    );
    border-radius: 4px;
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.4),
        2px 0 4px rgba(0, 0, 0, 0.2);
    z-index: -1;
}

/* Handle grip/texture */
.magnifying-glass::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotate(25deg);
    width: 12px;
    height: 40px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    border-radius: 6px;
    z-index: -1;
    opacity: 0.6;
}

.watch-image-large {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background-color: #1a1a1a;
    transition: opacity 0.3s ease;
    display: block;
}

.zoom-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.watch-image-zoom-wrapper:hover .zoom-icon {
    opacity: 0;
}

.zoom-icon svg {
    width: 24px;
    height: 24px;
}

/* Zoom Controls Wrapper */
.zoom-controls-wrapper {
    display: block;
}

/* Zoom Controls - Fixed position on top-right of image */
.zoom-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    z-index: 1001;
    pointer-events: auto;
    align-items: center;
    flex-wrap: wrap;
}

.zoom-controls > * {
    pointer-events: auto;
}

.zoom-helper {
    position: absolute;
    top: 5.5rem;
    right: 1rem;
    width: 240px;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(18, 18, 18, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 14px;
    color: #f5f1de;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 1000;
}

.zoom-helper strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.25rem;
}

.zoom-helper::after {
    content: '';
    position: absolute;
    top: -0.5rem;
    right: 2.5rem;
    width: 14px;
    height: 14px;
    background: inherit;
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    transform: rotate(45deg);
    box-shadow: -6px -6px 12px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
    .zoom-controls {
        gap: 0.5rem;
    }
    .zoom-helper {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
    }
    .zoom-helper::after {
        display: none;
    }
}

.zoom-toggle-btn {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.95);
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    touch-action: manipulation;
    flex-shrink: 0;
}

.zoom-toggle-btn:hover {
    background-color: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: scale(1.05);
}

.zoom-toggle-btn.active {
    background-color: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.zoom-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.zoom-level-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
    border: 2px solid #d4af37;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    flex-shrink: 0;
}

.zoom-level-btn {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #e5e5e5;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    touch-action: manipulation;
}

.zoom-level-btn:hover:not(:disabled) {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #000000;
    transform: scale(1.1);
}

.zoom-level-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.zoom-level-display {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 40px;
    text-align: center;
    letter-spacing: 0.5px;
}

.watch-image-zoom-wrapper.zoom-active {
    cursor: default;
}

@media (max-width: 767px) {
    .watch-image-zoom-wrapper {
        overflow: visible;
        cursor: pointer;
        touch-action: none;
    }
    
    .watch-image-zoom-wrapper:hover .watch-image-large {
        opacity: 1;
    }
    
    .magnifying-glass {
        width: 150px;
        height: 150px;
        border-width: 2px;
    }
    
    .magnifying-glass::after {
        bottom: -60px;
        height: 75px;
        width: 6px;
    }
    
    .magnifying-glass::before {
        bottom: -45px;
        height: 30px;
        width: 10px;
    }
    
    .zoom-icon {
        width: 40px;
        height: 40px;
        top: 0.75rem;
        right: 0.75rem;
        opacity: 1;
    }
    
    .zoom-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .watch-image-zoom-wrapper:hover .zoom-icon {
        opacity: 1;
    }
}

.watch-info {
    background-color: #1a1a1a;
    padding: 2rem;
    border: 1px solid #2a2a2a;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #b8b8b8;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.info-value {
    color: #ffffff;
    font-weight: 600;
}

.info-value.price {
    color: #d4af37;
    font-size: 1.125rem;
    font-weight: 700;
}

/* Single watch page price - same styling as watch cards */
.info-value.price::before {
    content: '€';
    font-size: 1.125rem;
    vertical-align: baseline;
    margin-right: 0.3rem;
}

.watch-description {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.watch-description h2 {
    margin-bottom: 1.5rem;
}

.watch-description p {
    color: #b8b8b8;
    line-height: 1.8;
}

/* Archive Page */
.archive-header {
    padding: 3rem 1rem;
    text-align: center;
    background-color: #0a0a0a;
}

.archive-filters {
    padding: 2rem 1rem;
    background-color: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
}

.archive-filters .container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
}

.filter-group strong {
    color: #e5e5e5;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
    min-width: 120px;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #e5e5e5;
    border: 1px solid #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #d4af37;
    color: #000000;
    border-color: #d4af37;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 1rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    background-color: #1a1a1a;
    color: #e5e5e5;
    border: 1px solid #2a2a2a;
    text-decoration: none;
}

.pagination .current,
.pagination a:hover {
    background-color: #d4af37;
    color: #000000;
    border-color: #d4af37;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section p,
.footer-section a {
    color: #b8b8b8;
    font-size: 0.875rem;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #1a1a1a;
    color: #666666;
    font-size: 0.875rem;
}

/* Related Watches */
.related-watches {
    padding: 3rem 1rem;
    background-color: #0a0a0a;
}

/* Generic Page */
.page-content {
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    margin-bottom: 2rem;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 6rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.about-hero p {
    font-size: 1.25rem;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 4rem 1rem;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem;
    border: 2px solid #2a2a2a;
    overflow: hidden;
    background-color: #1a1a1a;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #d4af37;
}

.about-text p {
    color: #b8b8b8;
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #2a2a2a;
}

.about-feature {
    text-align: center;
    padding: 2rem;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
}

.about-feature-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.about-feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-feature p {
    color: #b8b8b8;
    margin-bottom: 0;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    padding: 6rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
}

.contact-hero p {
    font-size: 1.25rem;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    background-color: #1a1a1a;
    padding: 3rem 2rem;
    border: 1px solid #2a2a2a;
}

.contact-info h2 {
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p,
.contact-item a {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4af37;
}

.contact-form-wrapper {
    background-color: #1a1a1a;
    padding: 3rem 2rem;
    border: 1px solid #2a2a2a;
}

.contact-form-wrapper h2 {
    color: #d4af37;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form label {
    display: block;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: #0a0a0a;
    border: 1px solid #2a2a2a;
    color: #e5e5e5;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background-color: #1a1a1a;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: #d4af37;
    color: #000000;
    border: 2px solid #d4af37;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form input[type="submit"]:hover {
    background-color: #f4d03f;
    border-color: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Responsive Design - Mobile adjustments */
@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 1rem 7rem;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: 1.875rem;
        letter-spacing: 0.5px;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        padding: 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.65rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-navigation ul {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .main-navigation {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .site-logo img {
        max-height: 40px;
    }
    
    .btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1.5rem;
    }
    
    .archive-filters {
        padding: 1.5rem 1rem;
    }
    
    .archive-filters .container {
        gap: 1.25rem;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .filter-group strong {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
    
    .filter-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: 5rem 1rem 10rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .watch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .watch-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .main-navigation ul {
        gap: 2.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .watch-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.375rem;
        line-height: 1.8;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 4rem;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .container {
        padding: 0 2rem;
    }

    .hero-section {
        padding: 6rem 1rem 10rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .featured-section {
        padding: 6rem 1rem;
    }
}

@media (min-width: 1200px) {
    .watch-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

