/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

.btn-white {
    background: white;
    color: #333;
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 100px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link.booking-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.language-btn:hover {
    background: #f5f5f5;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    display: none;
    z-index: 1001;
}

.language-menu.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.language-option:hover {
    background: #f5f5f5;
}

.language-option.active {
    background: #FF6B35;
    color: white;
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Back to the Future themed effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    animation: timeTravel 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes timeTravel {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 58, 138, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* About Preview Section */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Rooms Preview Section */
.rooms-preview {
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-info {
    padding: 1.5rem;
}

.room-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.room-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6B35;
}

.room-price span {
    font-size: 1rem;
    color: #666;
}

/* Location Section */
.location {
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.location-text p {
    margin-bottom: 2rem;
    color: #666;
}

.attractions h3 {
    margin-bottom: 1rem;
    color: #333;
}

.attractions ul {
    list-style: none;
}

.attractions li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.attractions i {
    color: #FF6B35;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #333;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: #FF6B35;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF6B35;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #FF6B35;
    width: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #333;
    color: white;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    padding: 10px 20px;
    background: #FF6B35;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e55a2b;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B35;
}

/* Contact Methods Layout */
.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.method-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Info Columns Layout */
.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 20px;
}

.nearby-attractions,
.transportation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.nearby-attractions h4,
.transportation h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
}

.nearby-attractions ul,
.transportation ul {
    list-style: none;
    padding: 0;
}

.nearby-attractions li,
.transportation li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.nearby-attractions i,
.transportation i {
    color: #FF6B35;
    width: 16px;
    text-align: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1E3A8A 0%, #0F172A 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-content i {
    font-size: 4rem;
    color: #FF6B35;
    margin-bottom: 2rem;
}

.empty-state-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.empty-state-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* TV Section */
.tv-section {
    margin-bottom: 4rem;
}

.tv-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tv-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.tv-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tv-image {
    position: relative;
}

.tv-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tv-img:hover {
    transform: scale(1.02);
}

/* Baby Cradle Section (override TV image sizing) */
.baby-cradle-section .tv-img {
    height: 300px;
    object-fit: contain;
    background: #fff;
    padding: 1rem;
}

.tv-text {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.tv-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Parking Section */
.parking-section {
    margin-bottom: 4rem;
}

.parking-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.parking-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.parking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.parking-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.parking-image {
    position: relative;
}

.parking-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.parking-img:hover {
    transform: scale(1.02);
}

.parking-text {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.parking-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.parking-text p:last-child {
    margin-bottom: 0;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #FF6B35;
    font-weight: bold;
}

.breadcrumb a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #666;
}

/* Marathons Page Styles */
.marathons-section {
    margin-bottom: 4rem;
}

.marathons-content {
    display: grid;
    gap: 2rem;
}

.marathon-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #FF6B35;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marathon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.marathon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.marathon-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.marathon-date {
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.marathon-details {
    display: grid;
    gap: 1rem;
}

.marathon-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.marathon-location,
.marathon-distances {
    margin-bottom: 0.5rem;
}

.marathon-location strong,
.marathon-distances strong {
    color: #2c3e50;
    font-weight: 600;
}

.marathon-registration {
    margin-top: 1rem;
}

.registration-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF6B35;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.registration-link:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Transportation Section Styles */
.transportation-section {
    margin-bottom: 4rem;
}

.transportation-content {
    display: grid;
    gap: 2rem;
}

.transportation-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.transportation-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.start-locations {
    display: grid;
    gap: 2rem;
}

.location-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #FF6B35;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.location-distance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF6B35;
    font-weight: 500;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.location-image {
    border-radius: 8px;
    overflow: hidden;
}

.location-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #FF6B35, #f8f9fa);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 8px;
    text-align: center;
}

.location-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.location-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.location-img:hover {
    transform: scale(1.05);
}

.location-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.directions h4,
.alternative-route h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.directions ol {
    color: #555;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.directions li {
    margin-bottom: 0.5rem;
}

.alternative-route p {
    color: #555;
    font-style: italic;
}

/* Running Section Styles */
.running-section {
    margin-bottom: 4rem;
}

.running-content {
    display: grid;
    gap: 2rem;
}

.running-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.running-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.running-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border-left: 4px solid #FF6B35;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Gallery Section Styles */
.gallery-section {
    margin-bottom: 4rem;
}

.gallery-content {
    display: grid;
    gap: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border-left: 4px solid #FF6B35;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Transportation Page Styles */
.overview-section {
    margin-bottom: 4rem;
}

.overview-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.overview-content {
    display: flex;
    justify-content: center;
}

.overview-text {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    max-width: 800px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.routes-section {
    margin-bottom: 4rem;
}

.routes-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.routes-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.routes-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.route-card {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.route-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.route-time {
    background: #FF6B35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.route-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #FF6B35;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.5rem;
}

.route-detail {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

.bus-info-section {
    margin-bottom: 4rem;
}

.bus-info-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bus-info-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.bus-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 2rem;
    text-align: center;
}

.info-icon {
    background: #FF6B35;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.return-section {
    margin-bottom: 4rem;
}

.return-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.return-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.return-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.return-option {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 2rem;
}

.return-option h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.return-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
}

.events-section {
    margin-bottom: 4rem;
}

.events-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.events-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.events-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.events-info {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 2rem;
}

.events-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.events-text ul {
    list-style: none;
    padding: 0;
}

.events-text li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.events-text li:before {
    content: "•";
    color: #FF6B35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-section {
    margin-bottom: 4rem;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.contact-method {
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    padding: 2rem;
}

.contact-method h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
}

.contact-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-text p i {
    color: #FF6B35;
    width: 20px;
}

/* Responsive Design for Transportation */
@media (max-width: 768px) {
    .route-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .routes-content {
        grid-template-columns: 1fr;
    }
    
    .bus-info-content {
        grid-template-columns: 1fr;
    }
    
    .return-content {
        grid-template-columns: 1fr;
    }
    
    .events-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Marathons Page Responsive Design */
@media (max-width: 768px) {
    .marathon-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-img {
        height: 150px;
    }
    
    .running-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tv-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tv-img {
        height: 300px;
    }

    .baby-cradle-section .tv-img {
        height: 260px;
        padding: 0.75rem;
    }

    .parking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .parking-img {
        height: 200px;
    }

    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .page-header-content p {
        font-size: 1.1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}


/* Page Header Styles */
.page-header {
    padding: 180px 0 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: white;
    opacity: 0.9;
    font-size: 1.2rem;
}

/* Booking CTA Styles */
.booking-options {
    padding: 1px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.booking-cta-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.booking-cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.booking-cta-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.booking-cta-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.booking-cta-card .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-cta-card .btn i {
    font-size: 1.2rem;
}

/* Gallery Styles */
.gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.gallery-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots indicator */
.dots-container {
    text-align: center;
    margin-bottom: 2rem;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #FF6B35;
}

/* Gallery info */
.gallery-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-info h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.gallery-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments for booking CTAs */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-info h2 {
        font-size: 1.5rem;
    }
    
    .gallery-info p {
        font-size: 1rem;
    }
    
    .booking-cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
