/* Booking Policies Page Styles */
.policies-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;
}

.policies-content {
    width: 100%;
    text-align: center;
}

.policies-title {
    margin-bottom: 4rem;
    line-height: 1.1;
}

.booking-caps {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8b5a3c;
    display: block;
    line-height: 0.9;
}

/* Policies Grid */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.policy-card {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.policy-card:hover {
    background: rgba(139, 90, 60, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 90, 60, 0.15);
}

.policy-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;
}

.policy-card:hover::before {
    left: 100%;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 3px solid #8b5a3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5a3c;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.policy-icon svg {
    width: 40px;
    height: 40px;
}

.policy-card:hover .policy-icon {
    background: #8b5a3c;
    color: #f5f1eb;
    transform: scale(1.1);
}

.policy-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #8b5a3c;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    position: relative;
    z-index: 1;
}

.policy-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #8b5a3c;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

/* 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) {
    .policies-container {
        padding: 1.5rem;
    }
    
    .policies-title {
        margin-bottom: 3rem;
    }
    
    .booking-caps {
        font-size: 3rem;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .policy-card {
        padding: 2.5rem 1.5rem;
    }
    
    .policy-icon {
        width: 70px;
        height: 70px;
    }
    
    .policy-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .policy-heading {
        font-size: 1.2rem;
    }
    
    .policy-description {
        font-size: 0.9rem;
    }
    
    .action-buttons-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policies-container {
        padding: 1rem;
    }
    
    .booking-caps {
        font-size: 2.5rem;
    }
    
    .policies-grid {
        gap: 1.5rem;
    }
    
    .policy-card {
        padding: 2rem 1rem;
    }
    
    .policy-icon {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .policy-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .policy-heading {
        font-size: 1.1rem;
    }
    
    .policy-description {
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .action-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons-container .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Animations */
.policies-title {
    animation: fadeIn 1s ease-out;
}

.policies-grid {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.policy-card {
    animation: fadeInUp 0.6s ease-out calc(0.6s + var(--delay, 0s)) both;
}

.policy-card:nth-child(1) {
    --delay: 0.1s;
}

.policy-card:nth-child(2) {
    --delay: 0.2s;
}

.policy-card:nth-child(3) {
    --delay: 0.3s;
}

.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);
    }
} 