/* Urban Boutique Style */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --white: #ffffff;
    --charcoal: #111827;
    --light-gray: #f3f4f6;
    --urban-blue: #0ea5e9;
    --black-text: #000000;
    --radius: 16px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--black-text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Header */
header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--black-text);
}

nav a {
    text-decoration: none;
    color: var(--black-text);
    margin-left: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--urban-blue);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(5px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 500px;
    padding-left: 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-accent {
    width: 60px;
    height: 4px;
    background: var(--urban-blue);
    margin-bottom: 30px;
}

.hero-sub {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: #d1d5db;
}

.hero-phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--urban-blue);
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--urban-blue);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--charcoal);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 20px 20px 0 var(--light-gray);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-icon {
    font-size: 2rem;
    color: var(--urban-blue);
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
}

.why-row {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.why-icon {
    font-size: 1.5rem;
    color: var(--urban-blue);
}

/* Portfolio */
.portfolio {
    padding: 100px 0;
}

.masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
}

.masonry-item {
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

.masonry-item:nth-child(2) { grid-row: span 2; }
.masonry-item:nth-child(3) { grid-column: span 2; }

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-card {
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 30px;
}

.testimonial-card.light { background: var(--light-gray); }
.testimonial-card.dark { background: var(--charcoal); color: white; }

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 30px; }

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--radius);
}

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

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

#form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--urban-blue);
    color: white;
    border-radius: var(--radius);
}

/* Map */
.map {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 100px;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 { color: var(--urban-blue); margin-bottom: 20px; font-size: 0.8rem; }
.footer-col p, .footer-col a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; display: block; margin-bottom: 10px; }

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #374151;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-overlay { width: 100%; }
    .hero-content { padding-left: 20px; }
    .about, .services-grid, .contact { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
