/* Global Styles */
:root {
    --primary-color: #e67e22;
    --secondary-color: #f9f7f2;
    --dark-color: #2c3e50;
    --light-color: #fff;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --border-color: #eaeaea;
    --success-color: #27ae60;
    
    /* Typography */
    --heading-font: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --body-font: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing & Layout */
    --section-spacing: 100px;
    --element-spacing: 30px;
    --border-radius: 8px;
    
    /* Transitions */
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
    
    /* Shadows */
    --shadow-small: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 6px 15px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 15px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: #d35400;
}

p {
    margin-bottom: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons & CTAs */
.cta-button, .submit-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-small);
    transition: var(--transition-fast);
}

.cta-button:hover, .submit-button:hover {
    background-color: #d35400;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-small);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('background.jpg') center/cover no-repeat fixed;
    color: var(--light-color);
    margin-bottom: var(--section-spacing);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255,255,255,1), transparent);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--light-color);
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
    max-width: 700px;
    line-height: 1.8;
}

/* Section Styles */
section {
    padding: var(--section-spacing) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 0 0 45%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-medium);
    vertical-align: middle;
    border-radius: var(--border-radius);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 0 0 55%;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--primary-color);
}

/* Products Section */
.products {
    background-color: var(--light-color);
    position: relative;
}

.products::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(249, 247, 242, 0.5));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(230, 126, 34, 0.05);
    z-index: -1;
    transition: var(--transition-medium);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-large);
    border-color: rgba(230, 126, 34, 0.3);
}

.product-card:hover::before {
    height: 100%;
}

.product-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* product Section */
.product {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.product-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.filter-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-button.active::after,
.filter-button:hover::after {
    width: 70%;
}

.filter-button.active, 
.filter-button:hover {
    color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-small);
    cursor: pointer;
    height: 300px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(230, 126, 34, 0.9), rgba(230, 126, 34, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
    padding: 20px;
    text-align: center;
}

.product-item:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-item:hover .product-image {
    transform: scale(1.1);
}

.product-overlay h3 {
    color: var(--light-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(-10px);
    transition: transform 0.5s ease 0.1s;
}

.product-overlay p {
    color: var(--light-color);
    transform: translateY(10px);
    transition: transform 0.5s ease 0.2s;
    margin-bottom: 0;
}

.product-item:hover .product-overlay h3,
.product-item:hover .product-overlay p {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    position: relative;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(230, 126, 34, 0.1);
    font-family: serif;
    line-height: 1;
}

.client-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-small);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-position {
    font-size: 0.9rem;
    color: #777;
}

.slider-arrows {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.arrow {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-small);
}

.arrow:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Contact Section */
.contact {
    background-color: var(--secondary-color);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-details p {
    margin-bottom: 0;
    color: #555;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
    background-color: var(--light-color);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 180px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #eee;
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 25px;
}

.footer-text {
    margin-bottom: 25px;
    color: #bbb;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: var(--light-color);
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--light-color);
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin-bottom: 0;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Additional Utility Classes */
.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-center {
    text-align: center;
}

/* Media Queries */
@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --section-spacing: 80px;
    }
    
    html {
        font-size: 15px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 70px;
    }
    
    html {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        background-color: rgba(255, 255, 255, 0.98);
        width: 80%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        box-shadow: var(--shadow-large);
        transform: translateX(100%);
        transition: var(--transition-medium);
        opacity: 0;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2::after {
        width: 50px;
    }
    
    .product-filter {
        gap: 5px;
    }
    
    .filter-button {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Additional Enhancements */
/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 99;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #d35400;
    transform: translateY(-5px);
}

/* Form success/error messages */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Pre-loader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(230, 126, 34, 0.2);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: #333;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background: #e67e22; /* Picklish theme color */
    color: white;
    transform: translateY(-3px);
}
/* WhatsApp Floating Button Styles */
.whatsapp-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
}

/* Pulse Animation */
.whatsapp-btn::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn svg {
        width: 25px;
        height: 25px;
    }
}
/* Weather Widget Container */
.weather-widget {
    position: fixed;
    top: 90px; /* Adjusted to be below header */
    right: 20px;
    width: 250px;
    background: rgba(255, 252, 242, 0.9); /* Adjusted to match site's color scheme */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(182, 144, 87, 0.2); /* Warm shadow to match site theme */
    padding: 15px;
    font-family: 'Poppins', sans-serif; /* Match site's font */
    z-index: 999;
    color: #3a3a3a; /* Darker text to match site */
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(182, 144, 87, 0.3); /* Subtle border in site's color theme */
    box-sizing: border-box;
}

.weather-widget:hover {
    box-shadow: 0 6px 20px rgba(182, 144, 87, 0.3);
}

.weather-widget-handle {
    background: rgba(255, 252, 242, 0.95);
    border-bottom: 1px solid rgba(182, 144, 87, 0.15);
    padding-bottom: 5px;
}

.handle-dots {
    color: rgba(182, 144, 87, 0.7);
    font-size: 14px;
    letter-spacing: 2px;
    user-select: none;
}

/* Header Section */
.weather-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.weather-location {
    font-weight: 600;
    font-size: 16px;
}

/* Main Weather Display */
.weather-main {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.weather-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.weather-temp {
    font-size: 20px;
    font-weight: 700;
    margin-left: 10px;
}

.weather-desc {
    text-transform: capitalize;
    font-size: 14px;
    opacity: 0.8;
}

/* Weather Details Section */
.weather-details {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(182, 144, 87, 0.2);
}

.weather-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-label {
    font-size: 11px;
    opacity: 0.7;
}

.detail-value {
    font-weight: 600;
}

/* Weather Animation Elements */
.sun {
    background: #ffb84d; /* Warmer sun color */
    border-radius: 50%;
    box-shadow: 0 0 20px #ffb84d;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    left: 10px;
}

.cloud {
    background: #fff;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cloud-1 {
    width: 25px;
    height: 25px;
    top: 5px;
    left: 10px;
}

.cloud-2 {
    width: 35px;
    height: 35px;
    top: 10px;
    left: 15px;
}

.cloud-3 {
    width: 20px;
    height: 20px;
    top: 15px;
    left: 25px;
}

.rain {
    position: absolute;
    width: 2px;
    background: #80c4ff;
    border-radius: 2px;
    animation: rain-fall 1.5s infinite linear;
}

@keyframes rain-fall {
    0% {
        transform: translateY(0);
        opacity: 0.7;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

.snow {
    position: absolute;
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snow-fall 3s infinite linear;
}

@keyframes snow-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(30px) rotate(360deg);
        opacity: 0;
    }
}

.thunder {
    position: absolute;
    background: #ffeb3b;
    clip-path: polygon(20% 0%, 0% 100%, 50% 60%, 30% 100%, 100% 0%, 50% 40%);
    width: 20px;
    height: 40px;
    top: 15px;
    left: 15px;
    animation: flash 3s infinite;
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 0.1;
    }
    45%, 55% {
        opacity: 0.9;
    }
}

.mist {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    animation: mist-move 5s infinite ease-in-out;
}

@keyframes mist-move {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.7;
    }
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .weather-widget {
        width: 220px;
    }
}

@media (max-width: 576px) {
    .weather-widget {
        width: 180px;
        padding: 10px;
        padding-top: 25px;
        font-size: 12px;
    }
    
    .weather-temp {
        font-size: 16px;
    }
    
    .weather-icon {
        width: 40px;
        height: 40px;
    }
    
    .detail-label {
        font-size: 9px;
    }
}

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a3c34; /* Dark green to match your header */
    color: #fff;
    padding: 15px 20px;
    z-index: 1000; /* Ensure it’s above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Ensure padding doesn’t affect width */
  }
  
  .banner-content {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Match your site’s content width */
    display: flex;
    align-items: center;
    overflow: hidden; /* Critical for scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    will-change: transform; /* Optimize animation performance */
  }
  
  .scrolling-text {
    display: inline-block;
    white-space: nowrap; /* Keep text on one line */
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding-right: 40px; /* Space for close button */
    animation: scroll 20s linear infinite;
    -webkit-animation: scroll 20s linear infinite; /* For Safari */
    -moz-animation: scroll 20s linear infinite; /* For Firefox */
    will-change: transform; /* Optimize for GPU */
    transform: translateZ(0); /* Force hardware acceleration */
  }
  
  /* Scrolling animation */
  @keyframes scroll {
    0% {
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
    }
  }
  
  /* Pause animation on hover (desktop only) */
  @media (hover: hover) {
    .scrolling-text:hover {
      animation-play-state: paused;
      -webkit-animation-play-state: paused;
      -moz-animation-play-state: paused;
    }
  }
  
  .close-banner {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Above scrolling text */
  }
  
  .close-banner:hover {
    color: #f4a261; /* Orange accent */
  }
  
  /* Hide banner when closed */
  .announcement-banner.hidden {
    display: none;
  }
  
  /* Announcement Button */
  .announcement-button {
    background-color: #f4a261;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .announcement-button:hover {
    background-color: #e76f51;
  }
  
  /* Mobile-specific adjustments */
  @media (max-width: 768px) {
    .announcement-banner {
      padding: 10px 15px;
    }
    .banner-content {
      overflow: hidden !important; /* Force overflow hidden */
      max-width: 100%; /* Ensure full width */
    }
    .scrolling-text {
      font-size: 14px;
      padding-right: 35px;
      animation: scroll 15s linear infinite; /* Faster for mobile */
      -webkit-animation: scroll 15s linear infinite;
      -moz-animation: scroll 15s linear infinite;
      transform: translateZ(0); /* Force hardware acceleration */
    }
    .close-banner {
      font-size: 20px;
      right: 10px;
    }
    .announcement-button {
      font-size: 12px;
      padding: 8px 12px;
    }
  }

  /* Order Section */
.order-section {
  background-color: #fffdee;
  padding: 60px 20px;
}

.order-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.order-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.order-form input,
.order-form select,
.order-form button {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.order-form input:focus,
.order-form select:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 4px rgba(40, 167, 69, 0.4);
}

.order-form button {
  background-color: #28a745;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #218838;
}

.order-status {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}

