/* ================================
   BREW & BLOOM - Custom Styles
   ================================ */

/* CSS Variables */
:root {
    --primary: #6B4423;
    --primary-light: #8B5A2B;
    --secondary: #D4A574;
    --accent: #E8D5B7;
    --dark: #1A1A1A;
    --darker: #0F0F0F;
    --light: #F5F0EB;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    cursor: none;
}

h1, h2, .section-title, .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

body:hover .custom-cursor,
body:hover .cursor-dot {
    opacity: 1;
}
section{
	overflow: hidden;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}
.navbar .container{
	max-width: 1200px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark) !important;
}

.brand-amp {
    color: var(--secondary);
    font-style: italic;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: var(--transition);
    opacity: 0.9;
}

.navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 1rem;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?w=1920') center/cover no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.4) 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }

.hero-title .highlight {
    color: var(--secondary);
    font-style: italic;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    text-align: center;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle.light {
    color: var(--secondary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title.light {
    color: var(--white);
}

/* Journey Section */
.journey-section {
    padding: 8rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.journey-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-line {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s ease;
}

.journey-line.visible {
    transform: scaleX(1);
}

.journey-step {
    text-align: center;
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.step-icon svg {
    width: 35px;
    height: 35px;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.step-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

/* Menu Section */
.menu-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.menu-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 700;
    color: rgba(107, 68, 35, 0.03);
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Playfair Display', serif;
}

.menu-tabs {
    background: var(--light);
    padding: 0.5rem;
    border-radius: 50px;
    display: inline-flex;
    margin-bottom: 3rem;
}

.menu-tabs .nav-link {
    color: var(--dark) !important;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin: 0;
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.menu-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.tab-icon {
    font-size: 1.25rem;
}

.menu-content {
    position: relative;
}

.menu-card {
    display: flex;
    gap: 1.5rem;
    background: var(--light);
    padding: 1.5rem;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.menu-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.menu-image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dark);
    margin: 0;
}

.menu-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.menu-desc {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.menu-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--white);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 500;
}

/* Brew Methods */
.brew-methods {
    padding: 2rem 0;
}

.brew-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.brew-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow);
}

.brew-card.featured {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.brew-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.brew-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.brew-icon {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.brew-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.brew-price {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.brew-card.featured .brew-price {
    color: var(--accent);
}

.brew-desc {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Pastry Cards */
.pastry-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pastry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pastry-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pastry-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pastry-card:hover .pastry-image-wrapper img {
    transform: scale(1.1);
}

.pastry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 68, 35, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.pastry-card:hover .pastry-overlay {
    opacity: 1;
}

.pastry-info {
    padding: 1.5rem;
}

.pastry-name {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.pastry-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.pastry-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* Brunch Section */
.brunch-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.brunch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brunch-card:hover img {
    transform: scale(1.05);
}

.brunch-card.large {
    height: 400px;
}

.brunch-card.small {
    height: 190px;
}

.brunch-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.brunch-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.brunch-price {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brunch-desc {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Roastery Section */
.roastery-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: var(--white);
}

.roastery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.roastery-parallax {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?w=1920') center/cover no-repeat;
    opacity: 0.2;
}

.roastery-content {
    position: relative;
    z-index: 2;
}

.roastery-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.roastery-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature p {
    margin: 0;
    font-weight: 500;
}

/* Stats */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* Experience Section */
.experience-section {
    padding: 8rem 0;
    background: var(--light);
}

.experience-swiper {
    padding-bottom: 4rem;
}

.experience-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover img {
    transform: scale(1.1);
}

.experience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.experience-card:hover .experience-overlay {
    transform: translateY(0);
    opacity: 1;
}

.experience-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.experience-desc {
    font-size: 0.875rem;
    opacity: 0.9;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Subscription Section */
.subscription-section {
    padding: 8rem 0;
    background: var(--white);
}

.sub-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.sub-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.benefit p {
    margin: 0;
    font-weight: 500;
}

.subscription-calculator {
    background: var(--light);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.calc-header {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
}

.calc-header p {
    margin: 0;
    font-weight: 600;
    font-size: 1.125rem;
}

.calc-body {
    padding: 2rem;
}

.calc-step {
    margin-bottom: 2rem;
}

.step-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.coffee-slider {
    padding: 0 0.5rem;
}

.form-range::-webkit-slider-thumb {
    background: var(--primary);
}

.form-range::-moz-range-thumb {
    background: var(--primary);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.frequency-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.freq-btn {
    flex: 1;
    min-width: 100px;
    padding: 1rem;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 15px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.freq-btn:hover,
.freq-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.calc-result {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--accent);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.result-item.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 0;
    background: var(--light);
}

.testimonials-swiper {
    padding: 2rem 0 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    margin: 0;
    color: var(--dark);
}

.author-title {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* Locations Section */
.locations-section {
    padding: 8rem 0;
    background: var(--white);
}

.location-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.location-status.open {
    background: #28a745;
    color: var(--white);
}

.location-status.closed {
    background: #dc3545;
    color: var(--white);
}

.location-info {
    padding: 1.5rem;
}

.location-name {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.location-address {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #888;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    position: relative;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1000') center/cover no-repeat;
    opacity: 0.1;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-text {
    font-size: 1.125rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item p:first-child {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-item p:last-child {
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.reservation-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid #eee;
    border-radius: 15px;
    height: 60px;
    font-size: 1rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(107, 68, 35, 0.1);
}

.form-floating > label {
    padding: 1rem 1.25rem;
}

.form-floating > textarea.form-control {
    height: 120px;
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
    background: var(--light);
}

.newsletter-box {
    background: var(--primary);
    padding: 4rem;
    border-radius: 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.newsletter-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-box p {
    opacity: 0.9;
    font-size: 1.125rem;
    margin: 0;
}

.newsletter-form .input-group {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    background: var(--dark);
    border: none;
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 6rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-brand .amp {
    color: var(--secondary);
}

.footer-text {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.footer-hours span {
    color: var(--white);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Custom Modal */
.custom-modal .modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.custom-modal .modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.custom-modal .modal-title {
    font-weight: 600;
    color: var(--dark);
}

.custom-modal .modal-body {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.custom-modal .modal-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem;
}

/* Responsive */
@media (max-width: 1200px){
	.nav-link{
		margin: 0 5px;
	}
}
@media (max-width: 991px) {
	.navbar-toggler{
		background: #fff;
	}
    .hero-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        margin-top: 3rem;
    }
    
    .contact-bg {
        display: none;
    }
    
    .brew-card.featured {
        transform: none;
    }
    
    .brew-card.featured:hover {
        transform: translateY(-5px);
    }
    .subscription-calculator,
    .reservation-form,
    .newsletter-form{
    	margin-top: 20px;
    }
    .footer-hours li{
    	display: block;
    }
    .footer-hours li span{
    	display: block;
    }
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: var(--shadow);
    }
    .nav-link{
    	text-align: center;
    }
    body {
        cursor: auto;
    }
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-link {
        color: var(--dark) !important;
        padding: 0.75rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .journey-line {
        display: none;
    }
    
    .step-card {
        margin-bottom: 1.5rem;
    }
    
    .menu-card {
        flex-direction: column;
    }
    
    .menu-image {
        width: 100%;
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        padding: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        margin: 0 !important;
    }
    
    .menu-tabs {
        flex-direction: column;
        width: 100%;
        border-radius: 20px;
    }
    
    .menu-tabs .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .frequency-options {
        flex-direction: column;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
}

/* Animation Utilities */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(107, 68, 35, 0.3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}