/* Custom Fonts and General Styles */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #FF8C00; /* Orange */
    --secondary-color: #4CAF50; /* Green */
    --text-color: #333;
    --light-bg: #f8f8f8;
    --green-bg: #e8f5e9; /* Light green */
    --dark-green: #2e7d32;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

/* Reusable Components */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn.primary {
    background-color: var(--primary-color);
    font-size: 1.1rem;
}

.btn.primary:hover {
    background-color: #e07b00;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-green);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
}

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

.hero-section .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-section .content {
    position: relative;
    z-index: 1;
    padding: 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-section .logo {
    font-size: clamp(3rem, 10vw, 5rem);
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-section .tagline {
    font-size: clamp(1rem, 5vw, 1.8rem);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background-color: var(--green-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Reservation Section */
.reservation-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.reservation-section form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reservation-section input,
.reservation-section select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reservation-section input:focus,
.reservation-section select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

/* Status Section */
.status-section {
    padding: 80px 20px;
    background-color: var(--green-bg);
}

.status-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.status-section input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

.status-section .btn {
    align-self: center;
    width: 100%;
    max-width: 250px;
}

.status-result {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--text-color);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    display: none; /* Hidden by default */
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 0.9rem;
}

footer p {
    margin: 8px 0;
}

.social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* ... Your existing CSS ... */

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden; /* Hide extra slides */
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background-color: white;
    text-align: center;
    border-radius: 15px;
    flex-shrink: 0;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-card .customer-name {
    font-weight: 500;
    color: var(--primary-color);
}
