/* ========================================
   PACHA PRESENTS - SPECIFIC STYLES
   ======================================== */

/* -----------------------------
   HERO SECTION ENHANCEMENTS
----------------------------- */
.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-content {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-date {
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    animation: none;
    font-family: 'Arial', sans-serif;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    opacity: 0.9;
    animation: hero-subtitle-fade 2s ease-in-out infinite alternate;
}

@keyframes hero-title-glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 40px rgba(147, 51, 234, 0.5);
    }
}

@keyframes hero-subtitle-fade {
    0% {
        opacity: 0.9;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

/* Titolo semplice e pulito */

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
}

/* -----------------------------
   CONTAINER MODIFICATIONS
----------------------------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}

section {
    margin: 0;
    padding: 0;
}

.content-section,
.visual-references,
.entrance-design {
    padding: var(--space-xl) 0;
}

@media (max-width: 768px) {
    .content-section,
    .visual-references,
    .entrance-design {
        padding: var(--space-md) 0;
    }

    .section-intro {
        margin-bottom: var(--space-md);
    }

    .section-title {
        margin-bottom: var(--space-sm);
    }
}

/* -----------------------------
   CLAIM SECTION
----------------------------- */
.claim-section {
    padding: 0;
    margin-top: -50px;
}

.neon-claim {
    padding: 2rem 0;
}

@media (max-width: 768px) {
    .claim-section {
        margin-top: -30px;
    }

    .neon-claim {
        padding: 1rem 0;
    }
}

.handwritten-text {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin: 2rem 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .handwritten-text {
        font-size: 2rem;
    }
}

/* -----------------------------
   CONCEPT SECTION
----------------------------- */
.concept-section {
    padding: 4rem 0;
    background-color: #000;
}

.wide-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 2rem;
}

.concept-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    margin: 2rem 0;
    text-align: justify;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .wide-container {
        max-width: 95%;
        padding: 0 1rem;
    }
    
    .concept-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* -----------------------------
   GRID LAYOUTS
----------------------------- */
.full-width-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
    margin-bottom: 2rem;
}

.full-width-grid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.full-width-grid img:hover {
    transform: scale(1.02);
}

.full-width-grid .video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.full-width-grid .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .full-width-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------
   DOOR ENTRANCE GRID
----------------------------- */
.door-entrance-grid {
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.door-entrance-grid .media-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: hidden;
}

.door-entrance-grid .media-container img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .door-entrance-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* -----------------------------
   EXTERNAL DECORATIONS GRID
----------------------------- */
.external-decorations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
    margin: var(--space-md) 0;
}

.external-decorations-grid .media-container {
    width: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.external-decorations-grid .media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .external-decorations-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        margin: var(--space-sm) 0;
    }

    .external-decorations-grid .media-container {
        aspect-ratio: 1/1;
    }
}

/* -----------------------------
   VIP ENTRANCE GRID
----------------------------- */
.vip-entrance-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-md);
    margin: var(--space-md) auto;
    max-width: 80%;
    align-items: center;
    justify-content: center;
}

.vip-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.vip-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .vip-entrance-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* -----------------------------
   EXTERNAL MAPPING GRID
----------------------------- */
.external-mapping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.external-mapping-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.external-mapping-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .external-mapping-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* -----------------------------
   GLOBAL ROOM GRID
----------------------------- */
.global-room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) auto;
    max-width: 90%;
}

.global-room-container {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.global-room-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .global-room-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* -----------------------------
   DJ BOOTH GRID
----------------------------- */
.dj-booth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.dj-booth-container {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.dj-booth-container video,
.dj-booth-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .dj-booth-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* -----------------------------
   GUARDIAN GRID
----------------------------- */
.guardian-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) auto;
    max-width: 90%;
}

.guardian-container {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.guardian-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .guardian-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* -----------------------------
   VIDEO STORIES
----------------------------- */
.video-stories {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.story-video {
    flex: 1;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.story-video video,
.story-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .video-stories {
        display: block;
    }

    .story-video {
        width: 100%;
        margin-bottom: 20px;
    }

    .story-video:last-child {
        margin-bottom: 0;
    }
}

/* -----------------------------
   ROOF ENTRANCE GRID
----------------------------- */
.roof-entrance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.roof-entrance-container {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.roof-entrance-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.roof-video-wrapper {
    width: 60%;
    margin: var(--space-md) auto;
}

.roof-video-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.roof-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .roof-entrance-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .roof-video-wrapper {
        width: 100%;
        margin: var(--space-md) 0;
    }

    .roof-entrance-container,
    .roof-video-container {
        margin-bottom: var(--space-md);
    }

    .roof-entrance-container:last-child,
    .roof-video-container:last-child {
        margin-bottom: 0;
    }
}

/* -----------------------------
   LOGO STYLES
----------------------------- */
.pacha-logo {
    width: 70px !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .pacha-logo {
        width: 60px !important;
    }
}

/* -----------------------------
   SEPARATOR LINE
----------------------------- */
.separator-line {
    width: 100%;
    height: 1px;
    margin: 50px auto;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 20%,
            rgba(255, 255, 255, 0.8) 80%,
            rgba(255, 255, 255, 0) 100%);
}

/* -----------------------------
   AUDIO CONTROL
----------------------------- */
.audio-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.audio-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.audio-control img {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease;
}

.audio-control.muted .unmuted-icon {
    display: none;
}

.audio-control:not(.muted) .muted-icon {
    display: none;
}

/* -----------------------------
   MILESTRONG SECTION
----------------------------- */
.milestrong-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.milestrong-container {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

.milestrong-container img,
.milestrong-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (min-width: 769px) {
    .milestrong-container {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .milestrong-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .milestrong-container {
        aspect-ratio: auto;
        height: auto;
        margin-bottom: var(--space-sm);
    }
    
    .milestrong-container img,
    .milestrong-container video {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* -----------------------------
   EXTERNAL MAPPING IMAGES
----------------------------- */
@media (max-width: 768px) {
    .external-mapping-images {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .external-mapping-images > div {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
    
    .external-mapping-images > div:last-child {
        margin-bottom: 0 !important;
    }
}

/* -----------------------------
   MOBILE GRID ADJUSTMENTS
----------------------------- */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .grid .media-container {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .grid .media-container img,
    .grid .media-container video {
        width: 100%;
        height: auto;
        object-fit: contain;
        position: relative;
    }

    .dj-booth-videos {
        flex-direction: column !important;
    }

    .dj-booth-videos .story-video {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }

    .roof-video-container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
