@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1B263B 0%, #1E90FF 100%);
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    position: relative;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1605540439846-769e78b0ea02?q=80&w=2070&auto=format&fit=crop') no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

header h1, header p {
    position: relative;
    z-index: 2;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E8B57;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in;
}

header p {
    font-size: 1.2rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

header p.under-construction {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

nav {
    background-color: #1B263B;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

nav a {
    color: #FFFFFF;
    margin: 0 1.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #2E8B57;
}

.content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-in;
    color: #333;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #1B263B;
    color: #FFFFFF;
    position: relative;
    bottom: 0;
    width: 100%;
}

.facebook-link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.facebook-link:hover {
    color: #FFFFFF;
}

h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1E90FF;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    color: #333;
}

ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.note {
    font-style: italic;
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.service-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2E8B57;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1E90FF;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.button-container a {
    margin: 0 1rem;
}

.spacer {
    height: 3rem;
}

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

@media (min-width: 768px) {
    .button-container {
        flex-direction: row;
        justify-content: center;
    }
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #FFFFFF;
    font-size: 1rem;
    z-index: 0;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

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

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

@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }
    header p {
        font-size: 1rem;
    }
    header p.under-construction {
        font-size: 2.5rem;
    }
    nav a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    .content {
        margin: 1rem;
        padding: 1rem;
    }
}