/* Modern Orange Theme - Full Screen Responsive */
:root {
    --primary-orange: #ff6b35;
    --dark-orange: #d94e1f;
    --light-orange: #ff8c5a;
    --bg-dark: #0a0a0a;
    --bg-card: rgba(20, 20, 20, 0.8);
    --text-primary: #ffffff;
    --text-muted: #b0b0b0;
    --accent-glow: rgba(255, 107, 53, 0.3);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

#wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* Header */
.revamp-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
}

.revamp-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px var(--accent-glow);
}

.revamp-header p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
}

/* Bio Section - Full Width */
.bio-section {
    width: 100%;
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

/* Modern 3-Image Carousel */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-dark);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.carousel-track-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.carousel-track-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-track.dragging {
    transition: none;
}

.carousel-slide {
    flex: 0 0 calc(100% / 3);
    padding: 0.5rem;
    height: 400px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--accent-glow);
}

/* Centered Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 100;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.carousel-btn:hover {
    background: var(--light-orange);
    transform: scale(1.15);
    box-shadow: 0 0 30px var(--primary-orange);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--primary-orange);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--primary-orange);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: var(--primary-orange);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--light-orange);
    transform: rotate(90deg);
}

/* Bio Content */
.bio-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.bio-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bio-text {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Booking Section */
.booking-section {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.booking-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.booking-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.booking-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.booking-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--primary-orange) 100%);
}

/* Calendar Container */
.calendar-container {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

.calendar-container h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calendar-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    border: 3px solid var(--primary-orange);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.calendar-iframe-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange), var(--dark-orange));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
}

.calendar-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 50%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .bio-section {
        padding: 1rem;
    }

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

@media (min-width: 1920px) {
    .carousel-slide {
        height: 500px;
    }

    #wrap {
        max-width: 2400px;
        margin: 0 auto;
    }
}

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

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

.bio-section,
.booking-section,
.calendar-container {
    animation: fadeInUp 0.8s ease-out;
}