/* Variables */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --dark-color: #2C3E50;
    --light-color: #F7F9FC;
    --text-color: #333333;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

/* Header Styles */
header {
    background: var(--dark-color);
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.call {
    display: flex;
    gap: 2rem;
}

.call span {
    color: var(--primary-color);
}

.live-drink h4 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.live-drink i {
    color: var(--primary-color);
}

.icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.icons i {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.icons i:hover {
    color: var(--primary-color);
}

/* Navigation */
nav {
    background: white;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iOS */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome/Safari */
nav::-webkit-scrollbar {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    white-space: nowrap; /* Prevent wrapping */
    min-width: max-content; /* Ensure all items stay in one line */
}

nav li {
    padding: 0 1rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    display: block;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 180px 5% 100px;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sntence {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sntence h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sntence p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle div {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    width: 50px;
    height: 50px;
}

.circle-1 { top: 20%; left: 10%; }
.circle-2 { top: 60%; left: 20%; }
.circle-3 { top: 30%; right: 15%; }
.circle-4 { top: 70%; right: 10%; }

/* About Section */
.about-section {
    padding: 100px 5%;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Products Section */
.products-section {
    padding: 100px 5%;
    background: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
}

.price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0 1.5rem;
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: var(--dark-color);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 5%;
    background: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: var(--light-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: rgba(0,0,0,0.8);
    color: white;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Blog Section */
.blog-section {
    padding: 100px 5%;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-post img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--dark-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons i {
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 3%;
    }
    .sntence h2 {
        font-size: 3rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    header {
        padding: 0.8rem 3%;
    }
    .call {
        display: none;
    }
    nav {
        padding: 0.8rem 3%;
    }
    nav ul {
        gap: 2rem;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --nav-height: 50px;
    }
    
    header {
        padding: 0.5rem 3%;
        height: var(--header-height);
    }
    
    .live-drink h4 {
        font-size: 1.5rem;
    }
    
    nav {
        top: var(--header-height);
        padding: 0;
        height: var(--nav-height);
    }
    
    nav ul {
        gap: 0;
        padding: 0.5rem 1rem;
    }
    
    nav li {
        padding: 0 0.5rem;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
        white-space: nowrap;
    }
    
    .hero-section {
        padding: calc(var(--header-height) + var(--nav-height) + 2rem) 3% 3rem;
    }
    
    .sntence h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .sntence p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .circle div {
        width: 60px;
        height: 60px;
    }
    
    .circle img {
        width: 35px;
        height: 35px;
    }
    
    section {
        padding: 3rem 3% !important;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .products-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card img,
    .gallery-item img,
    .blog-post img {
        height: 200px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 2%;
    }
    
    .icons {
        gap: 1rem;
    }
    
    .icons i {
        font-size: 1rem;
    }
    
    nav ul {
        padding: 0.5rem;
    }
    
    nav li {
        padding: 0 0.3rem;
    }
    
    nav a {
        font-size: 0.7rem;
        padding: 0.5rem 0.6rem;
    }
    
    .sntence h2 {
        font-size: 1.8rem;
    }
    
    .sntence p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .circle div {
        width: 50px;
        height: 50px;
    }
    
    .circle img {
        width: 30px;
        height: 30px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .product-card h3,
    .gallery-item h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    footer {
        padding: 2rem 5% 1rem;
    }
}

/* Fix for fixed header spacing */
body {
    padding-top: calc(70px + 56px); /* Header height + Nav height */
}

/* Smooth transitions for all hover effects */
* {
    transition: all 0.3s ease-in-out;
}

/* Better touch targets for mobile */
button,
nav a,
.social-icons i {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Prevent content shift on load */
img {
    max-width: 100%;
    height: auto;
}

/* Search Styles */
.search-container {
    position: relative;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-content input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.2rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-color);
    color: white;
    outline: none;
}

.search-content input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

#close-search {
    position: absolute;
    right: -30px;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s;
}

/* Mobile styles for search */
@media (max-width: 768px) {
    .search-overlay {
        padding-top: 80px;
    }
    
    .search-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-content input {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .search-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    #close-search {
        right: 10px;
        top: -40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .search-content input {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}





