/*
Theme Name: Aastha Farms
Theme URI: https://haryanatech.wixsite.com/website
Author: Haryana Tech / Custom
Description: Custom Responsive Theme for Aastha Farms with Live Customizer for images and content.
Version: 1.0.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1a4d2e;
}
.brand img {
    height: 65px;
    width: auto;
    object-fit: contain;
}
.brand h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a4d2e;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-book {
    background: #e67e22;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-book:hover {
    background: #d35400;
}

/* Hero / Welcome Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('https://static.wixstatic.com/media/e3fb75_4c055c1a83184eaca37176e87136e64e~mv2.png/v1/crop/x_0,y_127,w_5512,h_1874/fill/w_1184,h_400,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/jdr%20welcome.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 90px 20px;
}
.hero-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero-content p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Ticket Booking Box */
.ticket-section {
    max-width: 1200px;
    margin: -40px auto 40px auto;
    padding: 0 20px;
}
.ticket-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    gap: 20px;
}
.ticket-info h3 {
    font-size: 26px;
    color: #1a4d2e;
    margin-bottom: 5px;
}
.ticket-info .price {
    font-size: 32px;
    font-weight: 800;
    color: #e67e22;
}
.ticket-info .duration {
    color: #666;
    font-size: 15px;
}
.booking-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.btn-whatsapp:hover {
    background: #1eb956;
}
.btn-call {
    background: #2980b9;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.btn-call:hover {
    background: #1f6696;
}

/* Services Grid */
.services-section {
    max-width: 1200px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
}
.section-title {
    text-align: center;
    font-size: 34px;
    color: #1a4d2e;
    margin-bottom: 35px;
    font-weight: 700;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.service-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card h4 {
    font-size: 20px;
    padding: 18px 10px;
    color: #2c3e50;
}

/* Footer */
.site-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 50px 20px 20px 20px;
    margin-top: 40px;
}
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #34495e;
}
.footer-logo img {
    height: 70px;
    margin-bottom: 15px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f39c12;
}
.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #95a5a6;
    font-size: 14px;
}

@media(max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .ticket-card {
        flex-direction: column;
        text-align: center;
    }
    .booking-buttons {
        justify-content: center;
    }
}