/* ======================
   GENERAL STYLES 
   ====================== */
   html {
    scroll-behavior: smooth;
}

/* ======================
   NAVIGATION BAR 
   ====================== */
.navbar {
    background: rgb(154,237,165);
    background: linear-gradient(90deg, rgba(154,237,165,1) 0%, rgba(46,204,70,1) 35%, rgba(27,28,28,1) 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar h1 {
    margin: 0;
    font-size: 24px;
    display: flex; 
    align-items: center;
    gap: 10px;
}

.navbar h1::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline-block;
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar a.selected {
    font-weight: bold;
    font-size: 18px;
    color: #ee0f0f;
    text-shadow: 0 0 5px rgba(255, 214, 248, 0.5);
}

/* ======================
   HOME SECTION 
   ====================== */
.home-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.home-section h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(46,204,70,1) 35%, rgba(27,28,28,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F83939; /* Fallback */
}

.home-section p1 {
    font-size: 2rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
    position: relative;
    font-weight: 600;
    padding-bottom: 1rem;
}

.home-section p1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: #F83939;
}

.home-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.home-section h2 {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.home-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #25D366;
}

.home-section ul {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
}

.home-section ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.home-section ul li::before {
    content: "✔";
    color: #5DE562;
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.home-section .highlight {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 5px solid #5DE562;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Image Container */
.image-container {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #F83939 #f1f1f1;
}

.image-container::-webkit-scrollbar {
    height: 8px;
}

.image-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.image-container::-webkit-scrollbar-thumb {
    background: #F83939;
    border-radius: 10px;
}

.image-container img {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Services Button */
.services-btn {
    display: block;
    width: 250px;
    margin: 3rem auto;
    padding: 1.2rem 2rem;
    background-color: #F83939;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.services-btn:hover {
    background-color: #d63030;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ======================
   SERVICES SECTION 
   ====================== */
   #services {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

#services h2 {
    font-size: 2rem;
    color: #25D366;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

#services p.intro-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 500;
    padding: 0 1rem;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
}

.service-box {
    background-color: #ffffff;
    border-left: 4px solid #5DE562;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.service-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #25D366;
    font-weight: 600;
}

.service-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Desktop layout */
@media (min-width: 768px) {
    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    #services {
        padding: 3rem 2rem;
    }
    
    #services h2 {
        font-size: 2.5rem;
    }
    
    #services p.intro-text {
        font-size: 1.25rem;
        padding: 0;
    }
}

/* ======================
   CONTACT SECTION 
   ====================== */
#contact {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#contact h2 {
    font-size: 2.5rem;
    color: #25D366;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

#contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #25D366;
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 20px 0;
}

.contact-box {
    flex: 1;
    background-color: #ffffff;
    border-left: 5px solid #5DE562;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.contact-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #25D366;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.contact-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #F83939;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.contact-box input,
.contact-box textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: #25D366;
}

.contact-box textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-box button {
    padding: 12px 25px;
    background-color: #F83939;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-box button:hover {
    background-color: #d63030;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-box p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-box p strong {
    color: #25D366;
}

.map-container {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}


/* ======================
   BOOKING SECTION 
   ====================== */
   #booking {
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

#booking h2 {
    font-size: 1.8rem;
    color: #25D366;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

#booking h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #25D366;
}

.booking-container {
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #5DE562;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#booking-form label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

#booking-form input,
#booking-form select {
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

#booking-form input:focus,
#booking-form select:focus {
    outline: none;
    border-color: #25D366;
}

#booking-form input[type="date"] {
    padding: 0.75rem;
}

#booking-form select {
    appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2325D366' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}

#booking-form button {
    padding: 0.9rem;
    background-color: #F83939;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

/* Desktop Styles */
@media (min-width: 768px) {
    #booking {
        padding: 2rem;
    }
    
    #booking h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    #booking h2::after {
        width: 100px;
    }
    
    .booking-container {
        max-width: 800px;
        padding: 2rem;
    }
    
    #booking-form {
        gap: 1.25rem;
    }
    
    #booking-form label {
        font-size: 1.1rem;
    }
    
    #booking-form input,
    #booking-form select {
        padding: 0.9rem;
    }
    
    #booking-form button {
        padding: 0.9rem 2rem;
        width: auto;
    }
}

/* Hover effects only for non-touch devices */
@media (hover: hover) {
    .booking-container:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    #booking-form button:hover {
        background-color: #d63030;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

/* ======================
   FOOTER 
   ====================== */
.footer {
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(46,204,70,1) 35%, rgba(27,28,28,1) 100%);
    padding: 1.5rem;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ======================
   RESPONSIVE ADJUSTMENTS 
   ====================== */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    
    .navbar h1 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    .navbar ul {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .navbar a {
        font-size: 14px;
    }
    
    .navbar a.selected {
        font-size: 16px;
    }
    
    /* Home Section */
    .home-section {
        padding: 1.5rem;
    }
    
    .home-section h1 {
        font-size: 3.5rem;
    }
    
    .home-section p1 {
        font-size: 1.8rem;
    }
    
    .image-container img {
        width: 250px;
        height: 160px;
    }
    
    .services-btn {
        width: 200px;
        font-size: 1.2rem;
    }
    
    /* Services Section */
    #services {
        padding: 1.5rem;
    }
    
    #services h2 {
        font-size: 2rem;
    }
    
    #services p.intro-text {
        font-size: 1.2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-container .contact-box:first-child {
        order: 2;
    }
    
    .contact-container .contact-box:last-child {
        order: 1;
    }
    
    .contact-box {
        padding: 20px;
    }
    
    /* Booking Section */
    .booking-container {
        padding: 20px;
        max-width: 100%;
    }
    
    #booking-form {
        gap: 15px;
    }
    
    #booking-form input,
    #booking-form select {
        padding: 10px;
    }
    
    /* Footer */
    .footer {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .service-box {
        padding: 30px;
    }
    
    .contact-box {
        padding: 35px;
    }
    
    .booking-container {
        padding: 40px;
    }
}

@media (min-width: 1200px) {
    .image-container img {
        width: 350px;
        height: 250px;
    }
}