/* Booking Guide Page Styles */
.guide-container {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-content {
    width: 100%;
    text-align: center;
}

.guide-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8b5a3c;
    margin-bottom: 3rem;
    line-height: 1.1;
}

/* Guide Text Content */
.guide-text-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(139, 90, 60, 0.2);
    padding: 3rem;
    border-radius: 0;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #8b5a3c;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #8b5a3c;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.requirements-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4;
}

.requirements-list li strong {
    color: #8b5a3c;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

.requirements-list li:last-child {
    margin-bottom: 0;
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.guide-card {
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(139, 90, 60, 0.2);
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default;
}

.guide-card:hover {
    background: rgba(139, 90, 60, 0.1);
    border-color: rgba(139, 90, 60, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 90, 60, 0.15);
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.guide-card:hover::before {
    left: 100%;
}

.guide-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #8b5a3c;
    text-transform: uppercase;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    max-width: 280px;
}

/* Action Buttons */
.action-buttons-container {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-container {
        padding: 1.5rem;
    }
    
    .guide-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }
    
    .guide-text-content {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .requirements-list li {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        padding-left: 1.5rem;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .guide-card {
        padding: 2.5rem 1.5rem;
        min-height: 100px;
    }
    
    .guide-text {
        font-size: 1.1rem;
        max-width: 250px;
    }
    
    .action-buttons-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .guide-container {
        padding: 1rem;
    }
    
    .guide-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .guide-text-content {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .requirements-list li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding-left: 1.25rem;
        line-height: 1.6;
    }
    
    .guide-grid {
        gap: 1rem;
    }
    
    .guide-card {
        padding: 2rem 1rem;
        min-height: 80px;
    }
    
    .guide-text {
        font-size: 1rem;
        max-width: 220px;
    }
    
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons-container .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animations */
.guide-title {
    animation: fadeIn 1s ease-out;
}

.guide-grid {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.guide-card {
    animation: fadeInUp 0.4s ease-out calc(0.5s + var(--delay, 0s)) both;
}

.guide-card:nth-child(1) { --delay: 0.1s; }
.guide-card:nth-child(2) { --delay: 0.15s; }
.guide-card:nth-child(3) { --delay: 0.2s; }
.guide-card:nth-child(4) { --delay: 0.25s; }
.guide-card:nth-child(5) { --delay: 0.3s; }
.guide-card:nth-child(6) { --delay: 0.35s; }
.guide-card:nth-child(7) { --delay: 0.4s; }
.guide-card:nth-child(8) { --delay: 0.45s; }

.action-buttons-container {
    animation: fadeInUp 0.6s ease-out 1.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 