/**
 * Studio Page Styles
 * All styles scoped under .gp-studio to avoid conflicts
 * 
 * @package GradePixel
 */

/* =========================
   STUDIO HERO SECTION
   ========================= */
.gp-studio .studio-hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    padding: 0;
}

.gp-studio .studio-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.gp-studio .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.gp-studio .studio-hero-content-box {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 520px;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gp-studio .studio-hero-content-box h1 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #111;
    letter-spacing: -0.02em;
}

.gp-studio .studio-hero-content-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

/* =========================
   ABOUT OUR STUDIO SECTION
   ========================= */
.gp-studio .studio-about-split {
    padding: 100px 0;
    background: #fff;
}

.gp-studio .about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.gp-studio .about-text-content h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -0.02em;
}

.gp-studio .about-text-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.gp-studio .about-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
}

.gp-studio .stat-item {
    text-align: left;
}

.gp-studio .stat-item h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1;
}

.gp-studio .stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* =========================
   CAROUSEL SECTION (Dark)
   ========================= */
.gp-studio .studio-preview-section {
    background: #0d0d0d;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.gp-studio .studio-preview-section .section-header-compact {
    margin-bottom: 40px;
}

.gp-studio .studio-preview-section .section-header-compact h2 {
    color: #fff;
}

.gp-studio .studio-carousel-container {
    width: 100%;
    overflow-x: auto;
    padding: 0 40px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gp-studio .studio-carousel-container::-webkit-scrollbar {
    display: none;
}

.gp-studio .studio-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gp-studio .studio-slide {
    flex: 0 0 320px;
    min-width: 320px;
    cursor: pointer;
}

.gp-studio .slide-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gp-studio .slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gp-studio .slide-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gp-studio .slide-card:hover img {
    transform: scale(1.05);
}

.gp-studio .slide-info {
    padding: 24px;
}

.gp-studio .slide-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.gp-studio .slide-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Carousel Nav */
.gp-studio .carousel-nav {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 30px;
}

.gp-studio .carousel-nav .nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gp-studio .carousel-nav .nav-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

/* =========================
   ROOM FEATURE SECTIONS
   ========================= */
.gp-studio .room-feature-section {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.gp-studio .room-feature-section:last-of-type {
    border-bottom: none;
}

.gp-studio .room-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.gp-studio .room-feature-info {
    padding-top: 20px;
}

.gp-studio .room-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    font-weight: 600;
    margin-bottom: 16px;
}

.gp-studio .room-feature-info h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.gp-studio .room-feature-info>p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.gp-studio .room-mini-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.gp-studio .mini-stat h4 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    line-height: 1;
}

.gp-studio .mini-stat span {
    font-size: 13px;
    color: #666;
}

/* Room Visual */
.gp-studio .room-feature-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gp-studio .room-main-image {
    border-radius: 20px;
    overflow: hidden;
}

.gp-studio .room-main-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gp-studio .room-main-image:hover img {
    transform: scale(1.03);
}

.gp-studio .room-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gp-studio .gallery-thumb {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gp-studio .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gp-studio .gallery-thumb:hover img {
    transform: scale(1.08);
}

/* =========================
   CTA SECTION
   ========================= */
.gp-studio .upgrade-visuals-section {
    background: #fff;
    text-align: center;
    padding: 120px 0;
    border-top: 1px solid #f0f0f0;
}

.gp-studio .upgrade-visuals-section h2.section-title-large {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    margin-bottom: 32px;
    color: #111;
    letter-spacing: -0.02em;
}

/* =========================
   BUTTON STYLES
   ========================= */
.gp-studio .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gp-studio .btn-primary {
    background: #111;
    color: #fff;
    padding: 14px 32px;
    border-radius: 100px;
}

.gp-studio .btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gp-studio .btn-outline {
    background: transparent;
    color: #111;
    border: 1px solid #ddd;
    padding: 12px 28px;
    border-radius: 100px;
}

.gp-studio .btn-outline:hover {
    border-color: #111;
    background: #f9f9f9;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1200px) {
    .gp-studio .room-feature-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .gp-studio .about-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gp-studio .room-feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gp-studio .room-feature-visual {
        order: -1;
    }

    .gp-studio .studio-hero-content-box {
        left: 40px;
        right: 40px;
        max-width: none;
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .gp-studio .studio-hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .gp-studio .studio-hero-content-box {
        left: 20px;
        right: 20px;
        bottom: 40px;
        padding: 28px;
    }

    .gp-studio .studio-hero-content-box h1 {
        font-size: 24px;
    }

    .gp-studio .studio-about-split {
        padding: 60px 0;
    }

    .gp-studio .about-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gp-studio .studio-preview-section {
        padding: 60px 0;
    }

    .gp-studio .studio-carousel-container {
        padding: 0 20px 20px;
    }

    .gp-studio .studio-slide {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .gp-studio .room-feature-section {
        padding: 60px 0;
    }

    .gp-studio .room-mini-stats {
        gap: 24px;
    }

    .gp-studio .room-gallery-row {
        gap: 8px;
    }

    .gp-studio .upgrade-visuals-section {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {
    .gp-studio .studio-hero-section {
        height: 60vh;
        min-height: 450px;
    }

    .gp-studio .about-stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .gp-studio .stat-item h3 {
        font-size: 28px;
    }

    .gp-studio .room-gallery-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes gpStudioFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gp-studio .studio-hero-content-box {
    animation: gpStudioFadeUp 0.8s ease-out 0.3s both;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .gp-studio .studio-hero-content-box,
    .gp-studio .slide-card,
    .gp-studio .slide-card img,
    .gp-studio .room-main-image img,
    .gp-studio .gallery-thumb img {
        animation: none;
        transition: none !important;
    }
}