/* ============================================
   CSS VARIABLES - Brand Colors & Typography
   ============================================ */
:root {
    /* Colors from your design system */
    --color-primary: #2A5934;
    --color-secondary: #A1B555;
    --color-text: #7A7A7A;
    --color-accent: #61CE70;
    --color-accent-red: #EE4454;
    --color-accent-olive: #697331;
    --color-accent-yellow: #B3B834;
    --color-db745f8: #DB745F8;
    --color-2cc05cc: #2CC05CC;
    
    /* Typography */
    --font-primary: 'Philosopher', serif;
    --font-secondary: 'Josefin Sans', sans-serif;
    --font-text: 'Baloo 2', cursive;
    --font-accent: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    color: var(--color-text);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: relative;
    z-index: 10;
    padding: var(--spacing-md) 0;
    text-align: center;
}

.logo-container {
    display: inline-block;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: var(--spacing-lg) 0;
}

.content-wrapper {
    max-width: 700px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.subtitle {
    display: block;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent-yellow);
    margin-bottom: var(--spacing-sm);
    animation: fadeIn 1s ease-out 0.5s both;
}

.title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease-out 0.7s both;
}

/* ============================================
   MAINTENANCE MESSAGE
   ============================================ */
.maintenance-message {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out 0.9s both;
}

.maintenance-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-accent) 0%, 
        var(--color-accent-yellow) 50%, 
        var(--color-accent-red) 100%);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-olive) 100%);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease-in-out infinite;
}

.maintenance-icon {
    width: 40px;
    height: 40px;
    color: white;
}

.maintenance-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.maintenance-text {
    font-family: var(--font-text);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease-out 1.1s both;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.info-label {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent-olive);
    margin-bottom: 4px;
}

.info-value {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    animation: fadeInUp 1s ease-out 1.3s both;
}

.reservation-btn {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-olive) 100%);
    border: none;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(97, 206, 112, 0.3);
    position: relative;
    overflow: hidden;
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.reservation-btn:hover::before {
    left: 100%;
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(97, 206, 112, 0.4);
}

.reservation-btn:active {
    transform: translateY(0);
}

.cta-note {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--color-text);
    margin-top: var(--spacing-sm);
    opacity: 0.8;
}

/* ============================================
   BACKGROUND DECORATION
   ============================================ */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-red);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--color-accent-yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: var(--spacing-sm);
    }
    
    .logo {
        max-width: 150px;
    }
    
    .title {
        font-size: 42px;
        margin-bottom: var(--spacing-lg);
    }
    
    .maintenance-message {
        padding: var(--spacing-lg);
    }
    
    .maintenance-title {
        font-size: 24px;
    }
    
    .maintenance-text {
        font-size: 16px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-text {
        text-align: center;
    }
    
    .reservation-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 14px;
    }
    
    .circle-1 {
        width: 250px;
        height: 250px;
        top: -125px;
        right: -125px;
    }
    
    .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
    }
    
    .circle-3 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .title {
        font-size: 32px;
    }
    
    .maintenance-title {
        font-size: 20px;
    }
    
    .maintenance-text {
        font-size: 14px;
    }
    
    .info-value {
        font-size: 14px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .background-decoration {
        display: none;
    }
    
    .reservation-btn {
        background: var(--color-accent);
    }
}
