@font-face {
    font-family: 'League Spartan';
    src: url('public/fonts/LeagueSpartan-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'League Spartan';
    src: url('public/fonts/LeagueSpartan-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'League Spartan';
    src: url('public/fonts/LeagueSpartan-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'League Spartan';
    src: url('public/fonts/LeagueSpartan-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Yeseva One';
    src: url('public/fonts/YesevaOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F5F5DC !important;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 0;
    position: relative;
}

.container {
    text-align: center;
    background: transparent;
    padding: 20px 40px;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    gap: 10px;
    position: relative;
    z-index: 10;
}

.logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

@media (min-width: 769px) {
    .logo {
        top: 35%;
        transform: translate(-50%, -50%);
        max-height: none;
        z-index: 1;
    }
    
    .container {
        margin-top: 20vh;
    }
}

.subtitle {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    color: #6F4E37;
    margin-bottom: 30px;
    line-height: 1.6;
}

.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.button-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 15px 30px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 250px;
}

.btn-primary {
    background: #6F4E37;
    color: white;
}

.btn-primary:hover {
    background: #8B6F47;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: #6F4E37;
    border: 2px solid #6F4E37;
}

.btn-secondary:hover {
    background: #6F4E37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #6F4E37;
    color: white;
    padding: 15px 20px;
    text-align: center;
    z-index: 100;
}

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

.footer-content p {
    margin: 5px 0;
    font-family: 'League Spartan', sans-serif;
    font-size: 0.9rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo {
        top: 25%;
        max-width: 80%;
    }
    
    .container {
        margin-top: 0;
        padding: 20px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .footer {
        padding: 10px 15px;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
}

/* Cookie Banner Styles */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid #6F4E37;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    font-family: 'League Spartan', sans-serif;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.cookie-banner-text p strong {
    color: #6F4E37;
    font-weight: 600;
}

.cookie-banner-text a {
    color: #6F4E37;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #8B6F47;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #6F4E37;
    color: white;
}

.cookie-btn-accept:hover {
    background: #8B6F47;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-btn-reject {
    background: white;
    color: #6F4E37;
    border: 2px solid #6F4E37;
}

.cookie-btn-reject:hover {
    background: #6F4E37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #cookieBanner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-text {
        min-width: 100%;
    }
    
    .cookie-banner-text p {
        font-size: 0.85rem;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
