/* Warm linen color scheme for hospitality */
:root {
    --primary-bg: #faf0e6; /* Linen */
    --secondary-bg: #ffffff; /* White */
    --accent: #ffd700; /* Gold */
    --text-dark: #2c2c2c; /* Dark charcoal */
    --text-light: #6c757d; /* Gray */
    --soft-warm: #f5deb3; /* Wheat */
    --warm-neutral: #d2b48c; /* Tan */
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-bg);
}

header {
    background: var(--secondary-bg);
    color: var(--text-dark);
    padding: 1rem 2rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.5px;
    background: var(--secondary-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid var(--accent);
}

header p {
    margin: 0.5rem 0 0 0;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--primary-bg);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-button.primary {
    background: var(--accent);
    color: var(--text-dark);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--accent);
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.hero h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--warm-brown);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--accent), #b8860b);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(218,165,32,0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218,165,32,0.4);
}

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

section {
    margin-bottom: 3rem;
    background-color: var(--secondary-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    color: var(--warm-neutral);
    margin: 0 0 1.5rem 0;
    font-size: 2.2rem;
    font-weight: 300;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(250,240,230,0.5));
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    color: var(--warm-neutral);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

.service-card li {
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.service-card li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

#about {
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

#contact {
    text-align: center;
}

#contact form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: center;
}

#contact form label {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: inherit;
}

#contact form input,
#contact form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#contact form input:focus,
#contact form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(218,165,32,0.1);
}

#contact form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
    text-align: left; /* Keep textarea left-aligned for better UX */
}

#contact form button {
    grid-column: 1 / -1;
    background: linear-gradient(45deg, var(--accent), var(--soft-warm));
    color: var(--text-dark);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
}

#contact form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218,165,32,0.3);
}

footer {
    background: var(--secondary-bg);
    padding: 3rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--soft-warm);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    .logo h1 {
        font-size: 1.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 4rem 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    form {
        grid-template-columns: 1fr;
    }
}