:root {
    --background: #FEFAE0;
    --foreground: #03045E;
    --accent: #AE2012;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(254, 250, 224, 0.95);
    backdrop-filter: blur(8px);
    z-index: 50;
    border-bottom: 1px solid rgba(174, 32, 18, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

nav{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    padding: 5px;
}


#LOGO{
    height: 4rem;
    width: auto;
}

/* Hero Section Styles */
.hero-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(174, 32, 18, 0.1);
    color: var(--accent);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;   
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 2rem; /* Added margin above the button */
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: rgba(174, 32, 18, 0.9);
}

/* Gradient Balls */
.gradient-ball-1, .gradient-ball-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    animation: gradient-rotate 8s ease-in-out infinite;
}

.gradient-ball-1 {
    top: 0;
    left: 25%;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(to right, rgba(174, 32, 18, 0.2), rgba(3, 4, 94, 0.2));
    animation-delay: -4s;
}

.gradient-ball-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to right, rgba(3, 4, 94, 0.2), rgba(174, 32, 18, 0.2));
}

@keyframes gradient-rotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.5;
    }
}

/* Products Section */
.products {
    padding: 4rem 0;
    margin: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
    z-index: 6;
}

.product-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-content p {
    color: var(--foreground);
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Marquee Section */
.marquee-section {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    padding: 2rem 0;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.125rem;
    color: var(--foreground);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.marquee-content span:hover {
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-content {
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: var(--white);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #25D366;
    color: var(--white);
    width: 3.5rem;  /* Fixed width */
    height: 3.5rem; /* Fixed height */
    display: flex;   /* Added flex */
    align-items: center;    /* Center vertically */
    justify-content: center; /* Center horizontally */
    border-radius: 50%;    /* Perfect circle */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 50;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .gradient-ball-1, .gradient-ball-2 {
        width: 12rem;
        height: 12rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.hero-content h1{
    padding-top: 100px;
}

.contact-content p{
    padding-bottom: 20px;
}

.contact-content h2{
    padding-top: 20px ;
}

.section-header h2{
    padding-top: 20px;
}

.section-header h3{
    padding-top: 10px;
}

#nav1 h2{
    margin-left: 10px;
}