/* Urban Café - Modern, location-focused aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@300;400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #f6f7f9;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2d3436;
}

.logo i {
    font-size: 2rem;
    color: #e17055;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #e17055;
}

.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #444;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary {
    background: #e17055;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(225,112,85,0.15);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #d35400;
    box-shadow: 0 8px 24px rgba(225,112,85,0.22);
}

.about {
    background: #fff;
    padding: 5rem 0 3rem 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
    color: #222;
}

.about-desc {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    background: #f6f7f9;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature:hover {
    box-shadow: 0 8px 32px rgba(225,112,85,0.13);
    transform: scale(1.04);
}

.feature i {
    font-size: 2.5rem;
    color: #e17055;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 0.7rem;
    font-family: 'Montserrat', sans-serif;
}

.feature p {
    color: #555;
    font-size: 1rem;
}

.location {
    background: #f6f7f9;
    padding: 5rem 0;
}

.location-flex {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.location-info {
    flex: 1 1 350px;
    min-width: 300px;
}

.location-info h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.location-info p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.landmarks {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.landmarks li {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.address, .hours {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #222;
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.map-container {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.gallery {
    background: #fff;
    padding: 5rem 0;
}

.gallery h2 {
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
    color: #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.gallery-item:hover {
    box-shadow: 0 8px 32px rgba(225,112,85,0.13);
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.contact {
    background: #f6f7f9;
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
    color: #222;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
    padding: 0.9rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
}

textarea {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    padding: 0.9rem;
}

.btn-primary {
    align-self: flex-end;
}

.footer {
    background: #222;
    color: #fff;
    padding: 3rem 0 1rem 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    color: #e17055;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    background: #e17055;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.social-links a:hover {
    background: #d35400;
}

@media (max-width: 900px) {
    .location-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .map-container {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-features {
        flex-direction: column;
        gap: 1.2rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .location-info h2 {
        font-size: 1.5rem;
    }
}
