/* General Styles */
:root {
    --maroon: #800000;
    --orange: #FF7F00;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 100px;
}

/* Brand Logo Oval */
.brand-logo-oval {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--maroon);
    padding: 5px 15px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.brand-logo-oval::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,1) 50%, rgba(255,255,255,0.8) 100%);
    opacity: 0.3;
    transform: rotate(30deg);
    pointer-events: none;
    transition: all 0.6s ease;
}

.brand-logo-oval:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    border-color: var(--orange);
}

.brand-logo-oval:hover::after {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        left: -50%;
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0.6;
    }
}

/* Pulse animation for logo click */
.pulse-animation {
    animation: pulse 1s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1.1);
    }
}

.navbar-transparent .brand-logo-oval {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-transparent.scrolled .brand-logo-oval {
    transform: scale(1);
}

/* Navbar Styles */
.navbar {
    transition: 0.3s ease-in-out;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 38px; /* Height of the topbar */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-transparent {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.navbar-transparent.scrolled {
    background-color: var(--maroon);
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange) !important;
}

.btn-order {
    background-color: var(--orange);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background-color: #e67300;
    transform: translateY(-2px);
    color: white;
}

/* Hero Section */
.hero {
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-text h1 {
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 200px;
    object-fit: cover;
}

/* Testimonial Section */
.testimonial-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

/* About Section */
.about-img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 127, 0, 0.25);
}

/* Footer Styles */
.footer {
    background-color: var(--maroon);
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--orange);
    transform: translateX(5px);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-up {
    animation: slideUp 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
}

/* Custom Classes */
.text-maroon {
    color: var(--maroon);
}

.text-orange {
    color: var(--orange);
}

.bg-maroon {
    background-color: var(--maroon);
}

.bg-orange {
    background-color: var(--orange);
}

.btn-maroon {
    background-color: var(--maroon);
    color: white;
}

.btn-orange {
    background-color: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
}

/* Media Queries */
@media (max-width: 991.98px) {
    body {
        padding-top: 76px;
    }
    
    .navbar {
        margin-top: 0;
        background-color: var(--maroon) !important;
    }
    
    .brand-logo-oval {
        transform: scale(0.9);
        border-width: 1px;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
}

/* Map Container Styles */
.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-btn i {
    margin-right: 8px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fa-whatsapp {
    color: #25D366;
    transition: color 0.3s ease;
}

.fa-whatsapp:hover {
    color: #128C7E;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    background-color: #25D366;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    color: white;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
} 