/* Import variables from style.css */
:root {
    --primary-color: #b38c4e;    /* Golden brown */
    --secondary-color: #ffffff;  /* White */
    --accent-color: #76ade0;    /* Light blue */
    --text-color: #306038;      /* Dark green for contrast */
    --hover-color: #3d7847;     /* Slightly lighter green for hover */
    --bg-color: #f9f5e7;        /* Soft cream color for background */
    --stripe-blue: #e8f4ff;     /* Light blue for stripes */
}

/* Add padding to body to prevent content from going under the floating nav */
body {
    padding-top: 160px;
    background-color: var(--bg-color);
    min-height: 100vh;
}

/* Add your catering-specific styles below */

.catering-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../images/catering-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 4rem;
}

.catering-hero .hero-content {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(179, 140, 78, 0.15);
    border: 3px solid var(--stripe-blue);
}

.catering-hero h1 {
    color: var(--primary-color);
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.catering-hero p {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0;
}

/* Catering Info Section */
.catering-info {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f0f7f1 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.catering-info h2 {
    color: var(--primary-color);
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    color: var(--primary-color);
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Form Section */
.catering-form-section {
    padding: 4rem 2rem;
    background: var(--bg-color);
}

.catering-form-section h2 {
    color: var(--primary-color);
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.catering-form-section p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(179, 140, 78, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--stripe-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

.submit-button i {
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .catering-hero h1 {
        font-size: 2.5rem;
    }

    .catering-hero p {
        font-size: 1.2rem;
    }

    .catering-info h2,
    .catering-form-section h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}
