/* Title Section - 10% */
.title-section {
    height: 10vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title-section h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Presentation Section - 30% */
.presentation-section {
    height: 30vh;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.presentation-text {
    color: white;
    text-align: center;
    max-width: 800px;
}

.presentation-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Image Selection Section */
.image-selection {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background: none;
    flex-wrap: wrap;
}

.image-card {
    position: relative;
    width: 35%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    min-width: 200px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.image-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.3rem;
    margin: 0;
}

/* Hover effect - subtle lift with shadow */
.image-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Click effect - popup 3D effect */
.image-card.active {
    transform: translateZ(50px) scale(1.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.image-card.active img {
    filter: brightness(1.1);
}

/* Detailed Description Section */
.detailed-description {
    display: flex;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
}

.description-image {
    flex: 0 1 30%;
    min-width: 200px;
}

.description-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.description-text {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.description-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.description-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.description-text p:last-child {
    margin-bottom: 0;
}

/* Info Sections */
.info-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    scroll-margin-top: 10vh;
}

.info-section h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
    display: inline-block;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.info-section p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ecf0f1;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.reserve-buttons-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.reserve-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
    min-width: 200px;
}

.reserve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}

.reserve-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 12vh;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .nav-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .title-section h1 {
        font-size: 1.8rem;
    }

    .presentation-section {
        height: 35vh;
    }

    .presentation-text h2 {
        font-size: 1.5rem;
    }

    .presentation-text p {
        font-size: 1rem;
    }

    .image-selection {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .image-card {
        width: 45%;
        min-width: 150px;
    }

    .detailed-description {
        gap: 2rem;
        padding: 3rem 1.5rem;
        flex-direction: column;
    }

    .description-image {
        flex: 1;
        width: 100%;
    }

    .description-text {
        flex: 1;
        width: 100%;
    }

    .info-section {
        padding: 3rem 1.5rem;
    }

    .info-section h2 {
        font-size: 1.8rem;
    }

    .info-section p {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reserve-buttons-container {
        gap: 1rem;
        flex-direction: column;
    }

    .reserve-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 14vh;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .nav-buttons {
        flex-wrap: wrap;
    }

    .nav-btn {
        flex: 1 1 50%;
        font-size: 0.8rem;
        padding: 0.7rem;
    }

    .title-section h1 {
        font-size: 1.5rem;
    }

    .presentation-section {
        height: 40vh;
    }

    .presentation-text h2 {
        font-size: 1.3rem;
    }

    .presentation-text p {
        font-size: 0.95rem;
    }

    .image-selection {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .image-card {
        width: 100%;
        min-width: auto;
    }

    .description-text {
        padding: 1.5rem;
    }

    .description-text h2 {
        font-size: 1.5rem;
    }

    .info-section {
        padding: 2rem 1rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

    .info-section p {
        font-size: 0.95rem;
    }
}