/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Coffee Color Palette */
    --coffee-dark: hsl(25, 25%, 12%);
    --coffee-medium: hsl(30, 20%, 18%);
    --coffee-light: hsl(36, 25%, 25%);
    --coffee-cream: hsl(36, 45%, 88%);
    --coffee-gold: hsl(36, 60%, 65%);
    --coffee-teal: hsl(180, 45%, 45%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--coffee-dark), var(--coffee-medium));
    --gradient-card: linear-gradient(145deg, var(--coffee-medium), var(--coffee-light));
    
    /* Shadows */
    --shadow-soft: 0 4px 20px hsla(25, 25%, 12%, 0.3);
    --shadow-glow: 0 0 30px hsla(36, 60%, 65%, 0.2);
    
    /* Typography */
    --font-heading: 'Georgia', serif;
    --font-script: 'Dancing Script', cursive;
}

body {
    font-family: var(--font-heading);
    background: var(--gradient-hero);
    color: var(--coffee-cream);
    line-height: 1.6;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 1.5rem 1rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--coffee-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--coffee-cream);
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.logo-title {
    font-size: 1.5rem;
    font-family: var(--font-script);
    font-weight: bold;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--coffee-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--coffee-gold);
}

.cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--coffee-gold);
    color: var(--coffee-gold);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--coffee-gold);
    color: var(--coffee-dark);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.mobile-menu span {
    width: 1.5rem;
    height: 2px;
    background: var(--coffee-cream);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: url('image\ 7.png') center/cover;
    opacity: 0.3;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 60rem;
    padding: 0 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.decorative-line {
    width: 4rem;
    height: 2px;
    background: var(--coffee-teal);
    margin: 0 auto 1rem;
}

.hero-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-script);
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-heading {
    font-size: 2rem;
    color: var(--coffee-gold);
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

a{text-decoration: none;}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--coffee-gold);
    color: var(--coffee-dark);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--coffee-cream);
    border: 2px solid var(--coffee-cream);
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--coffee-cream);
    color: var(--coffee-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Spaces Section */
.spaces {
    padding: 5rem 1rem;
    background: var(--coffee-medium);
    position: relative;
    overflow: hidden;
}

.spaces::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid var(--coffee-gold);
    border-radius: 50%;
    opacity: 0.1;
}

.spaces::after {
    content: '';
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 12rem;
    height: 12rem;
    border: 1px solid var(--coffee-teal);
    border-radius: 50%;
    opacity: 0.1;
}

.spaces-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--coffee-gold);
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 32rem;
    margin: 0 auto;
}

.spaces-grid {
    display: grid;
    gap: 2rem;
}

.space-card {
    background: var(--coffee-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
}

.space-card:hover {
    transform: scale(1.02);
}

.card-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.space-card:hover .card-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--coffee-dark), transparent);
    opacity: 0.7;
}

.card-accent {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 3rem;
    height: 2px;
    background: var(--coffee-gold);
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    color: var(--coffee-gold);
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-link {
    display: flex;
    align-items: center;
    color: var(--coffee-teal);
    cursor: pointer;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--coffee-gold);
}

.card-link span:first-child {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(0.25rem);
}

/* Footer */
.footer {
    background: var(--coffee-dark);
    padding: 3rem 1rem;
    border-top: 1px solid var(--coffee-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
    max-width: 24rem;
}

.footer-title {
    color: var(--coffee-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.contact-info,
.hours-info {
    opacity: 0.8;
}

.contact-info p,
.hours-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--coffee-light);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    opacity: 0.6;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--coffee-cream);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--coffee-gold);
    opacity: 1;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .cta-button {
        display: block;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .spaces-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .card-image {
        height: 20rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}
