:root {
    --primary-color: #2A2A2A;
    --accent-color: #D14343;
    --background-color: #FFFFFF;
    --text-color: #333333;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    padding: 8px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--background-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(42, 42, 42, 0.5), rgba(42, 42, 42, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

section {
    padding: 4rem 2rem;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.why-stop-section {
    position: relative;
    margin-top: -100px;
    padding-top: 0;
    z-index: 2;
    background-color: var(--background-color);
    padding: 5rem 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reason-card {
    background-color: var(--background-color);
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reason-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-section {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 5rem 2rem;
    margin-top: 3rem;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.mission-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-point {
    padding: 1.5rem;
}

.mission-point h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.address {
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 2rem;
    transition: color 0.3s ease;
}

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

footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mission-statement {
        font-size: 1.5rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .why-stop-section {
        margin-top: -50px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
} 

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--background-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.contact-section {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 3rem;
}

.contact-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.building-image,
.address {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.location-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-image:hover {
    transform: scale(1.05);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.address {
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.address i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .location-image {
        height: 250px;
    }
} 

.passion-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.passion-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.passion-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .passion-points {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-content {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.owner-profile {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
}

.owner-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--card-shadow);
    flex-shrink: 0;  /* Prevent image from shrinking */
}

.owner-info {
    flex-grow: 1;  /* Allow text to take remaining space */
}

.owner-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: left;  /* Align left instead of center */
}

.owner-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-color);
    margin: 1rem 0;
    line-height: 1.4;
}

.about-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.passion-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.passion-card {
    padding: 2rem;
    text-align: center;
    background-color: var(--background-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.passion-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.passion-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.passion-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .owner-profile {
        gap: 2rem;
        padding: 1rem;
    }

    .owner-image {
        width: 250px;
        height: 250px;
    }

    .owner-info h2 {
        font-size: 2rem;
    }

    .owner-quote {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .owner-profile {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .owner-image {
        width: 200px;
        height: 200px;
    }

    .owner-info h2 {
        text-align: center;
    }

    .passion-points {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 0 1rem;
    }
}

/* Coffee Page Styles */
.coffee-header {
    background-color: var(--primary-color);
    padding: 8rem 2rem 4rem;
}

.coffee-header p {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.coffee-section {
    padding: 0 2rem 4rem;
}

.coffee-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cafe-image-banner {
    position: relative;
    margin: -4rem auto 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cafe-image-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.coffee-category {
    margin-bottom: 6rem;
}

.coffee-category h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
}

/* Classic Coffee Grid */
.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coffee-item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.coffee-item:hover {
    transform: translateY(-5px);
}

.coffee-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.coffee-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Specialty Coffee Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.specialty-item {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
}

.specialty-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.specialty-item h3 {
    color: var(--background-color);
    margin-bottom: 1rem;
}

.specialty-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cafe-image-banner img {
        height: 300px;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .coffee-category {
        margin-bottom: 4rem;
    }
}

/* Updated header and banner styles */
.coffee-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.cafe-image-banner {
    position: relative;
    margin: -4rem auto 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.image-overlay {
    position: absolute;
    bottom: -1.5rem;
    right: 2rem;
    background: var(--primary-color);
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.image-overlay p {
    color: var(--background-color);
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

/* Mobile Navigation Styles */
.navbar {
    position: relative;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--background-color);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .image-overlay {
        right: 1rem;
        bottom: -1rem;
        padding: 1rem 1.5rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
}

/* Adjust the page header to account for fixed navbar */
.page-header {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 6rem 2rem 3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}