/**
 * Rentals & Pricing Page Specialized Styles
 *
 * Implements the alternating section design and price lists.
 */

/* Hero Section */
.rentals-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://adventuracayman.com/wp-content/uploads/2024/01/Adventura-Cayman-Grand-Cayman-Paddle-Board-Rental-cover-image-e1704466593513.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0 150px;
    color: #fff;
    text-align: center;
    position: relative;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.rentals-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.rentals-hero .yellow-intense {
    color: #ffd400;
}

.rentals-hero h2 {
    font-size: 2rem;
}

.rentals-hero h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

/* Common Layout */
.rental-section {
    padding: 80px 0;
    background-color: #fff;
}

.rental-section:nth-child(even) {
    background-color: #f4f4f4;
}

.rental-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    gap: 60px;
}

.rental-section:nth-child(odd) .rental-container {
    flex-direction: row-reverse;
}

.rental-image {
    flex: 1;
}

.rental-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rental-content {
    flex: 1;
}

.rental-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.rental-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

/* Price List Table */
.price-header {
    font-weight: 800;
    color: #FB5012 !important;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.price-list {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(251, 80, 18, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-value {
    font-weight: 700;
    color: #FB5012;
    font-size: 1.1rem;
}

/* Book Now Button */
.btn-book {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 5px 15px rgba(255, 212, 0, 0.3);
}

.btn-book:hover {
    transform: translateY(-3px);
    background: #ffcc00;
}

/* Responsive */
@media (max-width: 991px) {
    .rental-container, 
    .rental-section:nth-child(odd) .rental-container {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .rental-content {
        text-align: left;
    }
    
    .rentals-hero h1 {
        font-size: 2.5rem;
    }
}
