@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-blue: #0A2540;   /* Deep Blue - Trust */
    --secondary-blue: #1C3D5A; 
    --accent-orange: #F39C12;  /* Orange/Yellow - Appetite */
    --accent-orange-hover: #D68910;
    --light-bg: #F8F9FA;       /* Clean White/Light Gray */
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #6C757D;
    
    /* Shadows */
    --soft-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --hover-shadow: 0 15px 40px rgba(0,0,0,0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Utilities */
.text-primary-blue { color: var(--primary-blue); }
.text-accent { color: var(--accent-orange); }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-accent { background-color: var(--accent-orange); }

/* Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    color: var(--white);
}

.btn-outline-premium {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}
.btn-outline-premium:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Header & Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--soft-shadow);
    padding: 15px 0;
    transition: var(--transition-fast);
}
.navbar-custom .nav-link {
    color: var(--primary-blue) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}
.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: var(--transition-fast);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
/* Glassmorphism shape behind hero */
.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    filter: blur(60px);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: var(--transition-base);
    height: 100%;
}
.product-card:-webkit-any-link { text-decoration: none; }
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.product-image-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f1f3f5;
}
.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}
.product-card-body {
    padding: 25px;
}
.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.product-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sections General */
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 15px;
}
.section-title { font-size: 2.5rem; margin-bottom: 20px; }

/* Image placeholder style */
.img-food-vibe {
    border-radius: 15px;
    box-shadow: var(--soft-shadow);
}

/* Footer */
.site-footer {
    background-color: var(--primary-blue);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px 0;
    margin-top: 50px;
}
.site-footer h5 { color: var(--white); margin-bottom: 20px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent-orange); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 40px; text-align: center; font-size: 0.9rem; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Form */
.contact-form-glass {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--soft-shadow);
}
.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.25rem rgba(243, 156, 18, 0.25);
}

/* Breadcrumb */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}
.page-header h1 { color: var(--white); font-size: 3rem; }
