/* Base styles - Mobile first */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f7f3eb;
    color: #333;
    font-size: 16px;
}

header {
    background-color: #8b0000;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    padding: 0 1rem;
}

header p {
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    padding: 0 1rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

/* Mobile-first navigation - hamburger menu */
nav {
    background-color: #333;
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: #333;
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    z-index: 100;
    padding-top: 80px;
}

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

nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 0;
}

nav li {
    border-bottom: 1px solid #444;
}

nav li:last-child {
    border-bottom: none;
}

nav a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 1.2rem;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile-first main content - single column */
.main-content {
    display: block;
    margin-top: 1rem;
}

.main-content > * {
    margin-bottom: 2rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

footer a {
    color: white;
}

/* Mobile-optimized WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float img {
    width: 45px;
    height: 45px;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

/* Enhanced Book Now Button Styles - Mobile First */
.book-now-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #B22222 0%, #DC143C 100%);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(178, 34, 34, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    min-width: 140px;
}

/* Hover effects */
.book-now-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.4);
    background: linear-gradient(135deg, #CD5C5C 0%, #FF6B6B 100%);
    color: white;
    text-decoration: none;
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(178, 34, 34, 0.3);
}

/* Navigation button in header - mobile */
.nav-book-btn {
    background: linear-gradient(135deg, #B22222 0%, #DC143C 100%);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(178, 34, 34, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-book-btn:hover {
    background: linear-gradient(135deg, #CD5C5C 0%, #FF6B6B 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(178, 34, 34, 0.4);
    color: white;
    text-decoration: none;
}

/* Navigation button inside menu */
nav .book-now-btn {
    background: linear-gradient(135deg, #B22222 0%, #DC143C 100%);
    color: white;
    margin: 1rem 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(178, 34, 34, 0.3);
    transition: all 0.3s ease;
}

nav .book-now-btn:hover {
    background: linear-gradient(135deg, #CD5C5C 0%, #FF6B6B 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.4);
}

/* Shimmer effect */
.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.book-now-btn:hover::before {
    left: 100%;
}

/* Button variations */
.book-now-btn.medium {
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 30px;
    min-width: 160px;
}

.book-now-btn.large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 35px;
    min-width: 180px;
}

/* White version for red backgrounds */
.book-now-btn.white {
    background: white;
    color: #B22222;
    border: 2px solid #B22222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.book-now-btn.white:hover {
    background: #B22222;
    color: white;
    border-color: #B22222;
    box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
}

/* Remove floating button on mobile to avoid conflicts */
.book-now-floating {
    display: none;
}

@keyframes float-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.book-now-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(178, 34, 34, 0.5);
    background: linear-gradient(135deg, #CD5C5C 0%, #FF6B6B 100%);
    color: white;
    text-decoration: none;
}

/* Pulse animation */
.book-now-btn.pulse {
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 2px 8px rgba(178, 34, 34, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(178, 34, 34, 0.5);
    }
    100% {
        box-shadow: 0 2px 8px rgba(178, 34, 34, 0.3);
    }
}

/* Container for buttons */
.book-now-container {
    text-align: center;
    margin: 20px 0;
}

.book-now-container .book-now-btn {
    margin: 5px;
    display: inline-block;
}

/* Social proof section - mobile optimized */
.book-now-section {
    background: #f8f9fa;
    padding: 20px 15px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.book-now-section h3 {
    color: #B22222;
    margin-bottom: 10px;
    font-size: 18px;
}

.book-now-section p {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.book-now-section .social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.book-now-section .social-proof span {
    color: #B22222;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

/* Accessibility */
.book-now-btn:focus {
    outline: 3px solid rgba(178, 34, 34, 0.5);
    outline-offset: 2px;
}

/* Touch targets for mobile */
@media (pointer: coarse) {
    .book-now-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
    
    nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Tablet styles */
@media (min-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    header {
        padding: 1.5rem 0;
    }
    
    header h1 {
        font-size: 2.2rem;
    }
    
    /* Hide hamburger and show horizontal nav on tablet+ */
    .hamburger {
        display: none;
    }
    
    .nav-container {
        justify-content: center;
        padding: 0.75rem 0;
    }
    
    .nav-book-btn {
        display: none;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        background: none;
        width: auto;
        height: auto;
        padding-top: 0;
        left: 0;
    }
    
    nav ul {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    nav li {
        border-bottom: none;
    }
    
    nav a {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        border-radius: 4px;
    }
    
    nav .book-now-btn {
        margin: 0;
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 25px;
        letter-spacing: 0.5px;
    }
    
    .main-content {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .book-now-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }
    
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
    
    /* Show floating button on tablet+ */
    .book-now-floating {
        display: block;
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 999;
        padding: 10px 20px;
        background: linear-gradient(135deg, #B22222 0%, #DC143C 100%);
        color: white;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        border-radius: 25px;
        box-shadow: 0 3px 12px rgba(178, 34, 34, 0.4);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        animation: float-bounce 4s ease-in-out infinite;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .container {
        padding: 2rem;
    }
    
    header {
        padding: 2rem 0;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    nav ul {
        gap: 2rem;
    }
    
    nav a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    nav .book-now-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .main-content {
        margin-top: 2rem;
    }
    
    .book-now-btn {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .whatsapp-float {
        padding: 12px;
    }
    
    .whatsapp-float img {
        width: 60px;
        height: 60px;
    }
    
    .book-now-floating {
        bottom: 90px;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .book-now-section {
        padding: 30px 20px;
    }
    
    .book-now-section h3 {
        font-size: 22px;
    }
    
    .book-now-section p {
        font-size: 15px;
    }
}

/* Large desktop styles */
@media (min-width: 1200px) {
    .book-now-btn.large {
        font-size: 18px;
        padding: 18px 36px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .book-now-btn {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .book-now-btn:hover {
        background: #fff;
        color: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .book-now-btn,
    .whatsapp-float,
    .book-now-floating {
        transition: none;
        animation: none;
    }
    
    .book-now-btn:hover {
        transform: none;
    }
    
    .hamburger span,
    .nav-menu {
        transition: none;
    }
}