:root {
    --primary: #2c3e50;
    --accent: #d4af37; /* Gold vibe */
    --light: #f9f9f9;
    --dark: #333;
}

body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    padding: 10px 0; /* Adjusted padding */
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.lang-button {
    background: none;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: bold;
    transition: background 0.2s;
}

.lang-button:hover {
    background: var(--primary);
    color: white;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    height: 70vh; /* Slightly taller */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem; /* Bigger title */
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 15px 35px; /* Larger button */
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b09a31; /* Slightly darker gold on hover */
}

.story-section, .services-section, .contact-section, .portfolio-section {
    padding: 80px 0;
    text-align: center;
}

.story-section p {
    max-width: 700px;
    margin: 15px auto;
    font-size: 1.1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.price {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    color: var(--accent);
    font-size: 1.2rem;
}

#contact-form {
    max-width: 500px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form button {
    border: none;
    cursor: pointer;
}

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 40px 0;
}