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

/* Typography - Luxury Brand Style */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    --primary-font: 'Archivo', sans-serif;
    --secondary-font: 'Cormorant Garamond', serif;
    --white: #ffffff;
    --black: #000000;
    --gray: #888888;
    --light-gray: rgba(255, 255, 255, 0.1);
}

body {
    font-family: var(--primary-font);
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    cursor: default;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav a:hover {
    opacity: 0.6;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: absolute;
    bottom: 120px;
    left: 60px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

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

.slide-title {
    font-size: clamp(60px, 10vw, 140px);
    font-weight: 700;
    letter-spacing: 12px;
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-family: var(--primary-font);
}

.slide-subtitle {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

/* Controls */
.controls {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: scale(1.1);
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
}

.separator {
    opacity: 0.5;
}

/* Dots Navigation */
.dots {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    transform: scale(1.3);
}

.dot.active {
    background: var(--white);
    width: 12px;
    height: 12px;
}

/* Social Media */
.social {
    position: fixed;
    bottom: 60px;
    left: 60px;
    display: flex;
    gap: 30px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    mix-blend-mode: difference;
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    color: var(--white);
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: var(--white);
    opacity: 0.3;
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 30px 40px;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .nav {
        gap: 25px;
    }

    .nav a {
        font-size: 12px;
    }

    .slide-content {
        left: 40px;
        bottom: 100px;
    }

    .controls {
        bottom: 40px;
        right: 40px;
        gap: 20px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
    }

    .dots {
        right: 40px;
    }

    .social {
        bottom: 40px;
        left: 40px;
        gap: 20px;
    }

    .scroll-indicator {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 25px 30px;
    }

    .logo {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 11px;
    }

    .slide-content {
        left: 30px;
        bottom: 140px;
    }

    .slide-title {
        letter-spacing: 6px;
    }

    .slide-subtitle {
        letter-spacing: 3px;
    }

    .controls {
        bottom: 30px;
        right: 30px;
        gap: 15px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .pagination {
        font-size: 16px;
    }

    .dots {
        display: none;
    }

    .social {
        bottom: 80px;
        left: 30px;
        gap: 15px;
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 20px;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 10px;
    }

    .slide-content {
        left: 20px;
        bottom: 120px;
    }

    .controls {
        bottom: 20px;
        right: 20px;
    }

    .social {
        bottom: 60px;
        left: 20px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--white);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Tour Dates / Calendar Section */
.tour-section {
    min-height: 100vh;
    background: var(--black);
    padding: 120px 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.tour-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    letter-spacing: 12px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--gray);
    text-transform: uppercase;
    font-family: var(--secondary-font);
}

/* Calendar */
.calendar-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-month {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
}

.calendar-nav {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gray);
    padding: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.calendar-day.other-month {
    color: rgba(255, 255, 255, 0.2);
}

.calendar-day.today {
    border-color: var(--white);
}

.calendar-day.event {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    border-color: var(--white);
}

.calendar-day.event::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--black);
    border-radius: 50%;
}

.calendar-day.event:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
}

/* Event Details */
.event-details {
    max-width: 900px;
    margin: 0 auto;
    min-height: 200px;
}

.event-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.event-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

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

.event-date {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.event-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-location {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 15px;
    font-family: var(--secondary-font);
}

.event-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-time {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
    opacity: 0.6;
}

/* Responsive - Calendar */
@media (max-width: 1024px) {
    .tour-section {
        padding: 100px 40px 60px;
    }

    .calendar-wrapper {
        padding: 30px;
    }

    .calendar-month {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .tour-section {
        padding: 80px 30px 50px;
    }

    .tour-header {
        margin-bottom: 50px;
    }

    .calendar-wrapper {
        padding: 20px;
    }

    .calendar-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .calendar-month {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .calendar-nav {
        width: 40px;
        height: 40px;
    }

    .calendar-weekdays span {
        font-size: 10px;
        padding: 8px 5px;
    }

    .calendar-days {
        gap: 8px;
    }

    .calendar-day {
        font-size: 14px;
    }

    .event-item {
        padding: 20px;
    }

    .event-name {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tour-section {
        padding: 80px 20px 40px;
    }

    .calendar-wrapper {
        padding: 15px;
    }

    .calendar-month {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .calendar-nav {
        width: 35px;
        height: 35px;
    }

    .calendar-weekdays span {
        font-size: 9px;
        padding: 5px 2px;
    }

    .calendar-days {
        gap: 5px;
    }

    .calendar-day {
        font-size: 13px;
    }

    .event-item {
        padding: 15px;
    }

    .event-name {
        font-size: 18px;
    }

    .event-location {
        font-size: 14px;
    }
}

