@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&family=Playfair+Display:wght@400;700&display=swap');

* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Lato', sans-serif;
color: #333;
line-height: 1.6;
background: #f9f9f9;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 400; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav {
position: fixed;
top: 0; width: 100%;
background: rgba(255,255,255,0.95);
z-index: 1000;
padding: 20px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
margin: 0; padding: 0;
}
nav ul li { margin: 0 20px; }
nav ul li a {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1px;
transition: color 0.3s;
}
nav ul li a:hover { color: #d4af37; }

/* Hero */
.hero {
height: 100vh;
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
}
.hero::before {
content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
background: rgba(0,0,0,0.45);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
.hero h1 { font-size: 4.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.4rem; margin-bottom: 40px; }
.cta-button {
background: #d4af37;
color: white;
padding: 16px 36px;
border-radius: 4px;
font-size: 1.1rem;
transition: all 0.3s;
}
.cta-button:hover { background: #b8962e; transform: translateY(-3px); }

/* Sections */
section { padding: 120px 0; }
h2 { font-size: 2.8rem; text-align: center; margin-bottom: 60px; }

/* About */
.about img {
width: 280px;
border-radius: 50%;
margin-bottom: 30px;
}

/* Testimonials & Cards */
.testimonial-grid, .gallery-grid, .pricing-grid, .blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 40px;
}
.testimonial, .card {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Footer */
footer {
background: #222;
color: #ddd;
padding: 50px 0;
text-align: center;
}
footer a { color: #d4af37; }

/* Responsive */
@media (max-width: 768px) {
.hero h1 { font-size: 2.8rem; }
nav ul { flex-direction: column; }
nav ul li { margin: 10px 0; }
}

/* NEW: High-class logo in navigation */
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
font-family: 'Playfair Display', serif;
font-size: 1.85rem;
font-weight: 700;
letter-spacing: -1px;
color: #333;
transition: color 0.3s;
}
.logo:hover {
color: #d4af37;
}

/* Portfolio Gallery - Uniform tiled look (no file changes needed) */
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
}

.gallery-grid a {
display: block;
overflow: hidden;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-grid img {
width: 100%;
height: 320px; /* ← Change this number if you want taller/shorter tiles */
object-fit: cover; /* Makes every tile the same size, crops beautifully */
object-position: center;
transition: transform 0.3s ease;
}

.gallery-grid img:hover {
transform: scale(1.05);
}