/* Reset and base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f8fa;
    color: #222;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    cursor: auto; /* Show default cursor on desktop */
}

/* Header & Navigation */
header {
    background: linear-gradient(90deg, #ffe066 0%, #4dabf7 100%);
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    border: 2px solid #ffd43b;
}

header h1 {
    font-size: 2rem;
    color: #d7263d;
    letter-spacing: 1px;
    font-weight: 700;
}

nav {
    margin-top: 0.5rem;
    text-align: center;
}

nav ul {
    list-style: none;
    display: inline-flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

nav a.active,
nav a:hover {
    background: #d7263d;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px #0006;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #222;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.95);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-primary {
    background: #ffd43b;
    color: #222;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary:hover {
    background: #d7263d;
    color: #fff;
}

/* Featured Rentals & Rentals Gallery */
.featured-rentals,
.rentals-gallery {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.featured-rentals h3,
.rentals-gallery h2 {
    text-align: center;
    color: #4dabf7;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.rental-note {
    text-align: center;
    color: #d7263d;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    background: #fff3cd;
    padding: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #ffd43b;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.rental-card,
.rental-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 1rem;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
}

.rental-card:hover,
.rental-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(77,171,247,0.13);
}

.rental-card img,
.rental-item img {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.7rem;
    background: #e9ecef;
}

.rental-card span {
    display: block;
    font-weight: 600;
    color: #222;
    margin-top: 0.3rem;
}

.rental-item h3 {
    color: #d7263d;
    margin: 0.5rem 0 0.3rem 0;
    font-size: 1.2rem;
}

.rental-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #444;
}

.btn-secondary {
    background: #4dabf7;
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #d7263d;
}

/* Contact Page */
.contact-section {
    max-width: 500px;
    margin: 2.5rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
}

.contact-section h2 {
    text-align: center;
    color: #4dabf7;
    margin-bottom: 1.2rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #222;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    background: #f7f8fa;
    transition: border 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border: 1.5px solid #4dabf7;
    outline: none;
}

.contact-form button {
    background: #ffd43b;
    color: #222;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

/* Rental Selection Styles */
.rental-selection {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.rental-selection h3 {
    color: #4dabf7;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.selection-note {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.rental-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.rental-option:hover {
    border-color: #4dabf7;
    box-shadow: 0 2px 8px rgba(77, 171, 247, 0.1);
}

.rental-option.selected {
    border-color: #ffd43b;
    background: #fffbf0;
    box-shadow: 0 2px 12px rgba(255, 212, 59, 0.2);
}

.rental-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rental-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #ffd43b;
    cursor: pointer;
}

.rental-checkbox label {
    font-weight: 600;
    color: #222;
    cursor: pointer;
    font-size: 1.1rem;
}

.preference-buttons {
    display: flex;
    gap: 0.5rem;
}

.preference-buttons input[type="radio"] {
    display: none;
}

.pref-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background: #fff;
    color: #666;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.pref-btn:hover {
    border-color: #4dabf7;
    color: #4dabf7;
}

.preference-buttons input[type="radio"]:checked + .pref-btn {
    background: #4dabf7;
    border-color: #4dabf7;
    color: #fff;
}

.preference-buttons input[type="radio"]:disabled + .pref-btn {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #adb5bd;
    cursor: not-allowed;
}

.preference-buttons input[type="radio"]:disabled:checked + .pref-btn {
    background: #adb5bd;
    border-color: #adb5bd;
    color: #fff;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0 0.5rem 0;
    margin-top: auto;
}

.footer-contacts {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #ffd43b;
}

.footer-copy {
    font-size: 0.95rem;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 700px) {
    .logo-title {
        flex-direction: column;
        gap: 0.3rem;
    }
    .hero {
        height: 220px;
    }
    .rentals-grid {
        grid-template-columns: 1fr;
    }
    .contact-section {
        padding: 1.2rem 0.5rem;
    }
    nav ul {
        gap: 1rem;
    }
    header h1 {
        font-size: 1.3rem;
    }
}

/* Water Splash Animation */
@keyframes waterSplash {
    0% {
        transform: scale(0);
        opacity: 1;
        background: radial-gradient(circle, #4dabf7 0%, #87ceeb 50%, transparent 100%);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
        background: radial-gradient(circle, #4dabf7 0%, #87ceeb 40%, #b3e5fc 70%, transparent 100%);
    }
    100% {
        transform: scale(2);
        opacity: 0;
        background: radial-gradient(circle, #4dabf7 0%, #87ceeb 30%, #b3e5fc 60%, #e1f5fe 90%, transparent 100%);
    }
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.splash-effect {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    animation: waterSplash 0.6s ease-out forwards;
}

.ripple-effect {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(77, 171, 247, 0.6);
    pointer-events: none;
    z-index: 1000;
    animation: rippleEffect 0.8s ease-out forwards;
}

/* Button click animations */
nav a,
.btn-primary,
.btn-secondary,
.rental-checkbox input[type="checkbox"],
.pref-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease;
}

nav a:active,
.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.95);
}

.rental-checkbox input[type="checkbox"]:active {
    transform: scale(1.1);
}

.pref-btn:active {
    transform: scale(0.95);
}

/* Hover effects with water theme */
nav a:hover,
.btn-primary:hover,
.btn-secondary:hover {
    box-shadow: 0 4px 15px rgba(77, 171, 247, 0.3);
}

.pref-btn:hover {
    box-shadow: 0 2px 8px rgba(77, 171, 247, 0.2);
}

/* Enhanced checkbox styling */
.rental-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #4dabf7;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rental-checkbox input[type="checkbox"]:checked {
    animation: checkboxPop 0.3s ease;
}

@keyframes checkboxPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Water Trail Effect - More Realistic Water Drops */
.water-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 6px;
    height: 8px;
    background: linear-gradient(135deg, #4dabf7 0%, #87ceeb 50%, #b3e5fc 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: waterTrail 1.8s ease-out forwards;
    box-shadow: 0 0 4px rgba(77, 171, 247, 0.4);
}

.water-ripple {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.8) 0%, rgba(135, 206, 235, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    animation: waterRipple 2.5s ease-out forwards;
}

.water-drop {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    width: 4px;
    height: 6px;
    background: linear-gradient(180deg, #4dabf7 0%, #87ceeb 60%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: waterDrop 2s ease-out forwards;
    box-shadow: 0 1px 2px rgba(77, 171, 247, 0.3);
}

@keyframes waterTrail {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    30% {
        transform: scale(0.9) rotate(5deg);
        opacity: 0.7;
    }
    70% {
        transform: scale(0.6) rotate(10deg);
        opacity: 0.4;
    }
    100% {
        transform: scale(0.2) rotate(15deg);
        opacity: 0;
    }
}

@keyframes waterRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(2);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes waterDrop {
    0% {
        transform: scale(1) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: scale(0.8) translateY(2px);
        opacity: 0.6;
    }
    100% {
        transform: scale(0.3) translateY(5px);
        opacity: 0;
    }
}

/* Cursor enhancement */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #4dabf7 0%, #87ceeb 70%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
    opacity: 0.8;
}

.custom-cursor.hover {
    transform: scale(1.5);
    background: radial-gradient(circle, #ffd43b 0%, #4dabf7 70%, transparent 100%);
}

/* Show default cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    .custom-cursor {
        display: none;
    }
} 