/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;

    /* ps-custom.css Compatibility Variables */
    --wdtBorderColor: rgba(212, 175, 120, 0.2);
    --wdtPrimaryColorRgb: 212, 175, 120;
    /* Gold RGB */
    --wdtAccentTxtColor: #ffffff;
    --wdtFontSize_Base: 1rem;
    --wdtFontSize_H3: 1.75rem;
    --wdtFontSize_H4: 1.5rem;
    --wdtFontSize_H5: 1.25rem;
    --wdtFontSize_Ext: 0.875rem;
    --wdtFontWeight_Base: 400;
    --wdtFontWeight_H3: 600;
    --wdtRadius_3X: 12px;
}

/* Watch Dial Animation */
@keyframes wdt-cus-clock-seconds-animation {
    from {
        transform: rotate(0deg);
        transform-origin: 50% 50%;
    }

    to {
        transform: rotate(360deg);
        transform-origin: 50% 50%;
    }
}

.wdt-cus-clock-seconds-animation {
    animation: wdt-cus-clock-seconds-animation 60s infinite linear;
}

/* Dial SVG Colors */
.wdt-cus-clock-icon-5-01,
.wdt-cus-clock-icon-6-01 {
    fill: #FFFFFF;
}

.wdt-cus-clock-icon-5-02 {
    fill: #2D1C1C;
}

.wdt-cus-clock-icon-5-03 {
    fill: #D0CCCB;
}

.wdt-cus-clock-icon-5-04 {
    fill: #BCB5B3;
}

.wdt-cus-clock-icon-5-05 {
    fill: #FEB01A;
}

.wdt-cus-clock-icon-6-02 {
    fill: #EAD6D3;
}

/* Clock 3 (Roman) */
.wdt-cus-clock-icon-3-01 {
    fill: #FFFFFF;
}

.wdt-cus-clock-icon-3-02 {
    fill: #A96B6B;
}

/* Clock 2 (Panerai) */
.wdt-cus-clock-icon-2-01 {
    fill: #FFFFFF;
}

/* Clock 4 (Flieger) */
.wdt-cus-clock-icon-4-01 {
    fill: #FFFFFF;
}

.wdt-cus-clock-icon-4-02 {
    fill: #F96441;
}

/* Clock 1 (Mixed) */
.wdt-cus-clock-icon-1-01 {
    fill: #FFFFFF;
}

.wdt-cus-clock-icon-1-02 {
    fill: #EFB860;
}

.wdt-cus-clock-icon-1-03 {
    fill: #C47C4B;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-gold-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.main-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
    padding: var(--spacing-lg) 0;
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(212, 175, 120, 0.2);
}

/* Hero Carousel */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    margin-top: 0;
    /* Override any previous margin since header is fixed */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu ul {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold-primary);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn-primary {
    background: linear-gradient(145deg, var(--color-gold-primary), var(--color-gold-secondary));
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(212, 175, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 120, 0.4);
}

/* Footer */
.main-footer {
    background-color: var(--color-dark-gray);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(212, 175, 120, 0.1);
    margin-top: var(--spacing-xxl);
    text-align: center;
}

.footer-text {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Utilities */
.text-gold {
    color: var(--color-gold-primary);
}

.text-center {
    text-align: center;
}

/* Marquee Testimonials */
.testimonials-section {
    background-color: var(--color-black);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(212, 175, 120, 0.1);
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.marquee-row {
    display: flex;
    gap: var(--spacing-lg);
    width: max-content;
}

.scroll-left {
    animation: scrollLeft 40s linear infinite;
}

.scroll-right {
    animation: scrollRight 40s linear infinite;
}

.marquee-row:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--wdtRadius_3X);
    width: 350px;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--color-gold-primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-dim);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-black);
}

.author-info h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    margin: 0;
}

.author-info span {
    color: var(--color-gold-primary);
    font-size: 0.8rem;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}