/* Premium Typography & Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #c5a059;
    --bg-light: #f9f9f9;
    --text-dark: #333;
    --text-muted: #666;
    --white: #ffffff;
    --font-main: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-main);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.4s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Services Section */
.section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

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

.service-card {
    padding: 40px;
    background: var(--bg-light);
    border: 1px solid #eee;
    transition: 0.3s;
}

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

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 500px;
    background: url('../images/portfolio2.jpg') center/cover no-repeat;
}

.about h2 {
    margin-bottom: 25px;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.portfolio-item {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:nth-child(1) { grid-column: span 2; }
.portfolio-item:nth-child(4) { grid-column: span 2; }

/* Map Section */
.map-container {
    height: 450px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Section */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: var(--font-secondary);
    outline: none;
}

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

#form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    color: #2f855a;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 10%;
    text-align: center;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bbb;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 20px;
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about { flex-direction: column; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-item:nth-child(1), .portfolio-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 768px) {
    header { padding: 20px; }
    nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .cta-group { flex-direction: column; }
    .section { padding: 60px 5%; }
}
