/* basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* colors i used for branding */
:root {
    --primary-color: #FF9AA2;    /* soft pink for main stuff */
    --secondary-color: #B5EAD7;  /* minty green for accents */
    --accent-color: #FFDAC1;     /* peachy color for highlights */
    --text-color: #2D3047;       /* dark blue-gray for text */
    --light-bg: #F8F9FA;         /* super light gray for backgrounds */
    --white: #FFFFFF;
    --purple: #E2D0F3;           /* light purple for some flair */
    --green: #C7CEEA;            /* soft blue-green */
    --kawaii-pink: #FFB7B2;      /* another pink shade */
    --kawaii-blue: #B5EAD7;      /* another minty shade */
    --kawaii-yellow: #FFE5B4;    /* soft yellow */
}

/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Pacifico&family=Comfortaa:wght@400;700&display=swap');

/* base styles */
body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    /* cute dot pattern for background */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFB7B2" opacity="0.3"/></svg>');
}

/* header and nav */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    text-decoration: none;
}

.logo-emoji {
    font-size: 2.5rem;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
    animation: bounce 2s infinite;
    transition: text-shadow 0.3s ease;
}

.logo:hover .logo-emoji {
    text-shadow: 0 0 0 var(--primary-color),
                 0 0 1px var(--primary-color),
                 0 0 2px var(--primary-color),
                 0 0 3px var(--primary-color),
                 0 0 4px var(--primary-color);
}

.logo:after {
    display: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

nav a:hover:after {
    width: 100%;
}

nav a i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
                url('images/hero.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top:180px;
}

.hero h1 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1.2;
    transform: rotate(-2deg);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 154, 162, 0.4);
    border: 2px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 154, 162, 0.6);
    background-color: var(--secondary-color);
}

.cta-button i {
    margin-right: 8px;
}

/* floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-strawberry, .floating-heart, .floating-star, .floating-cloud {
    position: absolute;
    font-size: 2rem;
    animation: float 15s infinite linear;
    bottom: -50px; /* start below the viewport */
}

.floating-strawberry {
    left: 10%;
    animation-delay: 0s;
}

.floating-heart {
    right: 15%;
    animation-delay: 3s;
}

.floating-star {
    left: 20%;
    animation-delay: 6s;
}

.floating-cloud {
    right: 25%;
    animation-delay: 9s;
}

@keyframes float {
    0% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0;
        bottom: -50px;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0;
        bottom: 120vh;
    }
}

/* sections */
section {
    padding: 5rem 2rem;
    position: relative;
    width: 90%;
    margin: 2rem auto;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

section h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* about section */
.about {
    background-color: var(--white);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 90%;
    padding: 3rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 2rem;
}

.feature {
    flex: 1;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* booking form */
.booking {
    background: linear-gradient(135deg, var(--kawaii-pink) 0%, var(--kawaii-blue) 100%);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    color: var(--text-color);
    padding: 3rem;
}

.booking h2 {
    color: var(--text-color);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 154, 162, 0.2);
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 154, 162, 0.3);
}

button[type="submit"]:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(181, 234, 215, 0.4);
}

button[type="submit"] i {
    margin-right: 8px;
}

/* strawberry varieties */
.varieties {
    background-color: var(--white);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 90%;
    padding: 3rem;
}

.strawberry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.strawberry-card {
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.strawberry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.strawberry-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.strawberry-card h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.strawberry-card p {
    padding: 0 1rem 1.5rem;
    color: var(--text-color);
}

/* gallery/slideshow */
.gallery {
    background: linear-gradient(135deg, var(--green) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    color: var(--white);
    padding: 3rem;
}

.gallery h2 {
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.slideshow {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    position: relative;
}

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* FAQ cccordion */
.faq {
    background-color: var(--white);
    border-radius: 20px;
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 90%;
    padding: 3rem;
}

.faq h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

#accordion {
    max-width: 800px;
    margin: 0 auto;
}

#accordion h3 {
    background-color: var(--light-bg);
    padding: 1.2rem;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

#accordion h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

#accordion h3:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

#accordion h3:hover i {
    color: var(--white);
}

#accordion div {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-bg);
}

/* footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    border-top: 3px solid var(--accent-color);
    width: 100%;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    flex: 0 1 auto;
    text-align: center;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
}

.footer-section p {
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-section p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* responsive design */
@media (max-width: 1280px) {
    .strawberry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .strawberry-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 4rem;
        padding: 0 1rem;
    }
    
    .footer-section {
        text-align: center;
        min-width: auto;
    }
    
    nav {
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 3;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(100px);
        transition: all 0.3s ease-in-out;
        width: 100%;
        text-align: center;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .weather-widget {
        margin: 0;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .logo-emoji {
        font-size: 2rem;
    }
    
    /* hide the regular nav links on mobile */
    .nav-links:not(.active) {
        display: none;
    }
}

/* loading and error states */
.loading, .error {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.loading {
    animation: pulse 1.5s infinite;
}

.error {
    color: var(--primary-color);
    font-weight: bold;
}

/* welcome and confirmation messages */
.welcome-message, .confirmation-message {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.welcome-message p {
    margin: 0;
    color: var(--text-color);
}

.confirmation-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.confirmation-message p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

/* new booking button */
.new-booking-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
    font-family: 'Quicksand', sans-serif;
    display: block;
    width: fit-content;
}

.new-booking-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* strawberry card details */
.strawberry-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--accent-color);
}

.characteristics {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.characteristics li {
    margin: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.characteristics li::before {
    content: '🍓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* animations */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.feature, .strawberry-card, .slide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.feature.animate, .strawberry-card.animate, .slide.animate {
    opacity: 1;
    transform: translateY(0);
}

/* slick carousel customization */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
    background: var(--secondary-color);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    color: var(--white);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
}

/* accordion customization */
.ui-accordion .ui-accordion-header {
    background: var(--light-bg);
    border: none;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    padding: 1rem;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.ui-accordion .ui-accordion-header:hover {
    background: var(--accent-color);
    color: var(--white);
}

.ui-accordion .ui-accordion-content {
    border: none;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0 0 10px 10px;
}

/* weather widget */
.weather-widget {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.weather-widget:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
}

.weather-display {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.weather-display i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 1.2rem;
}

@media (max-width: 768px) {
    .weather-widget {
        margin: 0.5rem 0;
        width: fit-content;
        justify-content: center;
    }
    
    .weather-display {
        font-size: 0.8rem;
    }
}

/* mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* navigation links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* responsive design */
@media screen and (max-width: 768px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block !important;  /* force display on mobile */
        position: relative;
        z-index: 1001;
    }

    .nav-links {
        display: none;  /* hidden by default on mobile */
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;  /* show when active */
        right: 0;
    }

    /* ensure logo, weather widget, and menu button are all visible */
    .logo {
        order: 1;
        margin-right: auto;  /* push other items to the right */
    }

    .weather-widget {
        order: 2;
    }

    .mobile-menu-btn {
        order: 3;
        margin-left: 1rem;  /* add space between weather widget and menu */
    }
}

/* responsive Design for Booking Form */
@media screen and (max-width: 768px) {
    .booking {
        padding: 2rem 1rem;
        margin: 1rem auto;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-group label {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select {
        padding: 1.2rem;
        font-size: 1.1rem;
        height: auto;
        -webkit-appearance: none;
        appearance: none;
    }

    /* specific styling for date input on mobile */
    input[type="date"] {
        min-height: 3.2rem;
    }

    /* specific styling for select on mobile */
    select {
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 0.8em auto;
        padding-right: 2.5rem;
    }

    button[type="submit"] {
        padding: 1.2rem;
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    /* confirmation and welcome messages on mobile */
    .welcome-message,
    .confirmation-message {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .confirmation-message h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .confirmation-message p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .new-booking-btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
}

/* error Message */
.error-message {
    background-color: rgba(255, 99, 71, 0.1);
    border: 2px solid tomato;
    color: tomato;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.error-message p {
    margin: 0.5rem 0;
}

/* loading State */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* disabled Button State */
button[type="submit"]:disabled {
    background-color: var(--light-bg);
    cursor: not-allowed;
    opacity: 0.7;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1em;
}

/* confirmation Message */
.confirmation-message {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.confirmation-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.confirmation-message p {
    margin: 0.5rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
} 