/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --max-width: 1200px;
    --header-height: 80px;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    min-height: auto;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #f5f5f5 0%, #ecf0f1 100%);
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem;
    padding-top: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-content {
    padding-right: 0.6rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
    max-width: 500px;
}

/* Animated Text */
.animated-text {
    height: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.text-slide {
    position: absolute;
    width: auto;
    min-width: 120px;
    height: 100%;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: slideText 4s infinite;
}

.text-slide:nth-child(2) {
    animation-delay: 2s;
}

@keyframes slideText {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%, 40% {
        opacity: 1;
        transform: translateY(0);
    }
    50%, 90% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

/* 3D Carousel Styles */
.carousel-3d-container {
    position: relative;
    width: 60%;
    aspect-ratio: 16/9;
    perspective: 1000px;
    transform-style: preserve-3d;
    margin: 0 auto;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 6s infinite linear;
    transform-origin: center center -150px;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.3s ease;
}

.carousel-item:nth-child(1) {
    transform: rotateY(0deg);
}

.carousel-item:nth-child(2) {
    transform: rotateY(120deg);
}

.carousel-item:nth-child(3) {
    transform: rotateY(240deg);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@keyframes rotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem 0.5rem;
        gap: 1rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .carousel-3d-container {
        width: 85%;
        max-width: 400px;
        perspective: 1200px;
    }

    .carousel-3d {
        animation: rotate 8s infinite linear;
        transform-origin: center center -120px;
    }

    .carousel-item {
        backface-visibility: visible;
        opacity: 0.9;
    }

    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(120px);
    }

    .carousel-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(120px);
    }

    .carousel-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(120px);
    }

    .animated-text {
        margin-bottom: 0.5rem;
        width: auto;
        min-width: 120px;
    }

    .cta-button {
        margin-top: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .carousel-3d-container {
        width: 90%;
        max-width: 300px;
        perspective: 1000px;
    }
    
    .carousel-3d {
        animation: rotate 10s infinite linear;
        transform-origin: center center -100px;
    }

    .carousel-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(100px);
    }

    .carousel-item:nth-child(2) {
        transform: rotateY(120deg) translateZ(100px);
    }

    .carousel-item:nth-child(3) {
        transform: rotateY(240deg) translateZ(100px);
    }

    .text-slide {
        font-size: 1rem;
    }
}

/* Ensure images maintain aspect ratio */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section {
    position: relative;
    background: #f5f5f5;
    padding: 2.5rem 0;
    margin-top: -2px;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Rental Section */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rental-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rental-card:hover {
    transform: translateY(-5px);
}

.rental-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rental-card h3 {
    padding: 1rem;
    margin: 0;
}

.rental-card p {
    padding: 0 1rem;
}

.rental-card .button {
    display: block;
    margin: 1rem;
    padding: 0.8rem;
    text-align: center;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.rental-card .button:hover {
    background: var(--secondary-color);
}

/* Community Section */
.social-feed {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-stats {
    color: white;
    display: flex;
    gap: 2rem;
    font-size: 1rem;
}

.instagram-post-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-post-stats i {
    font-size: 1.2rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #e1306c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: 500;
}

.social-button:hover {
    background: #c13584;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-bottom: 80px;
    }

    .wave-divider {
        height: 80px;
    }

    .wave-divider svg {
        height: 80px;
    }

    .section {
        padding: 3rem 0;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-container {
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Section Styles */
.booking-section {
    padding-top: calc(var(--header-height) + 2rem);
    background-color: var(--light-color);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-logo {
    display: block;
    margin: 0 auto 2rem;
    max-width: 200px;
    height: auto;
}

.booking-form {
    margin-top: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-section {
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.size-list {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        padding: 1rem;
        margin: 1rem;
    }
}

/* Image Grid Styles */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 300px));
    gap: 2rem;
    margin: 2rem auto;
    justify-content: center;
    max-width: 1200px;
}

.grid-image {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 8px;
    border: 1px solid #dbdbdb;
}

.grid-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-bottom: 1px solid #dbdbdb;
    z-index: 1;
}

.grid-image::after {
    content: '\f16d';
    font-family: 'Font Awesome 5 Brands';
    position: absolute;
    top: 12px;
    left: 12px;
    color: #262626;
    font-size: 16px;
    z-index: 2;
}

.grid-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.grid-image img {
    width: 100%;
    height: calc(100% - 40px);
    object-fit: cover;
    margin-top: 40px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}

/* Update button colors */
.cta-button, 
.button, 
.social-button,
.contact-form button {
    background: var(--primary-color);
    color: white;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover, 
.button:hover, 
.social-button:hover,
.contact-form button:hover {
    background: var(--secondary-color);
}

/* Update feature cards */
.feature-card i {
    color: var(--primary-color);
}

/* Update form focus states */
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

/* Update social links */
.social-links a:hover {
    color: var(--primary-color);
}

/* Community Header Styles */
.community-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.community-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.follower-count {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.follower-count i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.community-header .social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .community-header h3 {
        font-size: 1.5rem;
    }
    
    .follower-count {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Opening Hours Styles */
.opening-hours {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.opening-hours h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.opening-hours i {
    color: var(--primary-color);
}

.opening-hours p {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.opening-hours p:last-of-type {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.opening-hours .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

/* Update feature card styles for new layout */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .opening-hours {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .opening-hours h3 {
        font-size: 1.3rem;
    }

    .opening-hours p {
        font-size: 1rem;
    }
}

#bikepark {
    position: relative;
    z-index: 1;
}

#bikepark h2 {
    margin-top: 0;
}

/* Gallery Section */
.gallery-section {
    margin: 2rem 0;
    overflow: hidden;
    padding: 0;
}

.gallery-section h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.slider-container {
    position: relative;
    margin: 1.5rem auto;
    max-width: 100%;
    overflow: hidden;
    padding: 0 2.5rem;
}

.slider {
    position: relative;
    width: 100%;
    overflow: visible;
}

.slider-track {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    min-height: 280px;
    will-change: transform;
}

.slide {
    flex: 0 0 auto;
    aspect-ratio: 3/2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-button:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-button.prev {
    left: 0.5rem;
}

.slider-button.next {
    right: 0.5rem;
}

.slider-button i {
    font-size: 1rem;
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .gallery-section {
        margin: 1rem 0;
    }

    .gallery-section h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .slider-container {
        margin: 0.8rem auto;
        padding: 0 2rem;
    }

    .section {
        padding: 1.5rem 0;
    }

    .section + .section {
        padding-top: 1rem;
    }

    #bikepark {
        padding-bottom: 1rem;
    }

    .booking-section {
        padding-top: 1rem;
    }

    .slider-track {
        min-height: unset;
        gap: 0.5rem;
    }

    .slide {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        margin: 0.8rem 0;
    }

    .gallery-section h3 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .slider-container {
        margin: 0.6rem auto;
        padding: 0 1.5rem;
    }

    .section {
        padding: 1rem 0;
    }

    .section + .section {
        padding-top: 0.8rem;
    }

    .slider-track {
        gap: 0.4rem;
    }

    .slide {
        height: 140px;
    }

    .slider-button {
        width: 25px;
        height: 25px;
    }

    .slider-button i {
        font-size: 0.8rem;
    }
}

.accommodation-card {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    text-align: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.accommodation-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.accommodation-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.accommodation-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hotel-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.hotel-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.hotel-features i {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .accommodation-card {
        margin: 1rem;
        padding: 1.5rem;
    }

    .hotel-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hotel-features {
        grid-template-columns: 1fr;
    }

    .accommodation-card h3 {
        font-size: 1.5rem;
    }
}

.hotel-image.floating-hotel {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hotel-image.floating-hotel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hotel-image.floating-hotel {
        height: 180px;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hotel-image.floating-hotel {
        height: 150px;
        max-width: 100%;
    }
}

/* Hover effect to pause rotation */
.carousel-3d-container:hover .carousel-3d {
    animation-play-state: paused;
}

/* Event card & badge */
.event-card {
    position: relative;
    overflow: visible;
}

.event-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    z-index: 2;
}

.event-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
} 