/* Custom CSS for Café Rouge */

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

/* NeueMontreal Font Face - Add your font files here */
@font-face {
    font-family: 'NeueMontreal';
    src: url('fonts/NeueMontreal-Regular.woff2') format('woff2'),
         url('fonts/NeueMontreal-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeueMontreal';
    src: url('fonts/NeueMontreal-Medium.woff2') format('woff2'),
         url('fonts/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'NeueMontreal';
    src: url('fonts/NeueMontreal-Bold.woff2') format('woff2'),
         url('fonts/NeueMontreal-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --light-orange: #FFF5F0;
    --white: #FFFFFF;
    --dark-gray: #2C2C2C;
    --light-gray: #F8F9FA;
    --gold: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'NeueMontreal', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    font-weight: 400;
}

/* Navigation */
#mainNav {
    background-color: transparent;
    backdrop-filter: none;
    transition: all 0.3s ease;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar-toggler {
    border: 2px solid rgb(232, 63, 49);
    border-radius: 5px;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 63, 49, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(232, 63, 49, 0.25);
}

/* Logo removed - navbar-brand styling no longer needed */

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link {
    color: rgb(232, 63, 49) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Custom positioning for nav items */
.nav-item.nav-left {
    order: 1;
}

.nav-item.nav-center {
    order: 2;
}

.nav-item.nav-right {
    order: 3;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.7), rgba(44, 44, 44, 0.5));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* Buttons */
.btn-luxury {
    background-color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-luxury:hover {
    background-color: var(--dark-orange);
    border-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    color: var(--white);
}

.btn-outline-luxury {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-outline-luxury:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Sections */
.about-section {
    padding: 80px 0;
}

.featured-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-orange);
}

.text-center .section-title::after {
    left: 50%;
}

.text-start .section-title::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Coffee Cards */
.coffee-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coffee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.coffee-card img {
    height: 250px;
    object-fit: cover;
}

.coffee-card .card-body {
    padding: 1.5rem;
}

.coffee-card .card-title {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.coffee-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 1rem;
}

/* Menu Styles */
.menu-section {
    padding: 80px 0;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info h5 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    color: #666;
    margin: 0;
    font-weight: 400;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Contact Form */
.contact-section {
    padding: 80px 0;
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h5 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-orange);
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-orange);
}

/* Responsive Design */

/* Mobile First - Base styles for mobile */
@media (max-width: 575px) {
    /* Navigation */
    .navbar-nav {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    /* Hero Section */
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .video-background video {
        object-position: center;
    }
    
    /* Typography */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Cards */
    .coffee-card {
        margin-bottom: 1.5rem;
    }
    
    .coffee-card img {
        height: 200px;
    }
    
    /* Menu Items */
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 0;
    }
    
    .menu-item-price {
        margin-top: 0.5rem;
        font-size: 1.3rem;
    }
    
    /* Contact Form */
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Buttons */
    .btn-luxury, .btn-outline-luxury {
        padding: 10px 20px;
        font-size: 1rem;
        margin: 0.5rem 0;
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Sections */
    .coffee-beans-section,
    .featured-section,
    .menu-section,
    .contact-section {
        padding: 40px 0;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
    }
    
    .footer .col-lg-4 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    /* Page headers */
    .page-header {
        margin-top: 60px !important;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
    /* Hero Section */
    .hero-section {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Typography */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Cards */
    .coffee-card img {
        height: 220px;
    }
    
    /* Menu Items */
    .menu-item {
        flex-direction: row;
        align-items: center;
    }
    
    .menu-item-price {
        margin-top: 0;
    }
    
    /* Contact Layout */
    .contact-form {
        margin-bottom: 3rem;
    }
    
    /* Buttons */
    .btn-luxury, .btn-outline-luxury {
        display: inline-block;
        width: auto;
    }
    
    /* Sections */
    .coffee-beans-section,
    .featured-section,
    .menu-section,
    .contact-section {
        padding: 60px 0;
    }
    
    /* Page headers */
    .page-header {
        margin-top: 70px !important;
    }
}

/* Desktop */
@media (min-width: 992px) {
    /* Hero Section */
    .hero-section {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    /* Typography */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    /* Cards */
    .coffee-card img {
        height: 250px;
    }
    
    /* Buttons */
    .btn-luxury, .btn-outline-luxury {
        display: inline-block;
        width: auto;
    }
    
    /* Sections */
    .coffee-beans-section,
    .featured-section,
    .menu-section,
    .contact-section {
        padding: 80px 0;
    }
    
    /* Page headers */
    .page-header {
        margin-top: 76px !important;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Video Background Responsive */
@media (max-width: 768px) {
    .video-background {
        background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .video-background video {
        display: none;
    }
}

/* Navigation Mobile Improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        color: rgb(232, 63, 49) !important;
        text-align: center;
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(232, 63, 49, 0.1);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Reset nav item order for mobile */
    .nav-item.nav-left,
    .nav-item.nav-center,
    .nav-item.nav-right {
        order: unset;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .video-background {
        display: none !important;
    }
    
    .hero-section {
        height: auto !important;
        min-height: 200px !important;
    }
} 