:root {
    --bg-main: #faf9f6;        
    --text-main: #1a1a1a;      
    --text-muted: #666666;     
    --primary-color: #4a5240;  
    --btn-hover: #3d4435;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.8)), url('food-drink-images/cover.jpg') center/cover no-repeat;
    color: #fff;
}

.content-wrapper {
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.logo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.welcome-text {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1rem;
    color: #e8e6df;
    line-height: 1.6;
    margin-bottom: 3rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Button Styling */
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(74, 82, 64, 0.2);
}

.primary-btn:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(74, 82, 64, 0.3);
}

.primary-btn svg {
    transition: transform 0.3s ease;
}

.primary-btn:hover svg {
    transform: translateX(4px);
}

/* Footer */
.landing-footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}

.location-link {
    font-size: 0.8rem;
    color: #e8e6df;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
