@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --primary-dark: #191d26;
  --accent-gold: #b89f6b;
  --light-bg: #f9fafb;
  --light-bg-alt: #f3f4f6;
  --primary-btn: #7b120a;
  --primary-btn-hover: #9c170d;
  --text-white: #ffffff;
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --border-color: #374151;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--light-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Header & Nav */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 15px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
}

.contact-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-info i {
  color: var(--accent-gold);
}

.main-nav {
  background-color: var(--accent-gold);
  position: relative;
  z-index: 100;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 20px 25px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  font-family: var(--font-sans);
}

.btn-red {
  background-color: var(--primary-btn);
  color: var(--text-white);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
  background-color: var(--accent-gold);
  color: var(--text-white);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: var(--text-white);
}
.btn-dark:hover {
  background-color: #000;
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 24, 39, 0.6);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--text-white);
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Sections */
.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

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

.sub-title {
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Stats */
.stats {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stats-grid h2 {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.stats-grid p {
  font-size: 1.1rem;
  font-weight: 300;
}

/* Features grid */
.features {
  background-color: var(--light-bg);
}

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

.feature-card {
  background-color: var(--text-white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .circle-num {
  width: 60px;
  height: 60px;
  background-color: var(--primary-btn);
  color: var(--text-white);
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--font-serif);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

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

/* Testimonials */
.testimonials {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

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

.test-card {
  background-color: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 8px;
}

.test-card .stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.test-card p {
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.test-card h4 {
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Our Projects */
.projects {
  background-color: var(--light-bg-alt);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
  margin-top: 40px;
}

.gallery-grid .project-img:not(.span-full) {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.span-full {
  grid-column: 1 / -1;
  margin-top: -40px;
  margin-bottom: -50px;
}

.project-img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.top-row-img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Pages Hero (About, Contact) */
.page-hero {
  height: 40vh;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.7);
  z-index: 1;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  font-size: 3rem;
  margin: 0;
}

/* About Page Specific */
.about-section {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.about-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.about-row:last-child {
  margin-bottom: 0;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-content, .about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px; 
  height: 500px;
  object-fit: cover;
}

.about-circle-img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1 !important;
  height: auto !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

/* Contact Page Specific */
.contact-section {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.contact-card {
  background-color: var(--text-white);
  color: var(--text-dark);
  padding: 50px;
  border-radius: 12px;
  max-width: 800px;
  margin: -100px auto 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: var(--font-sans);
}

.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-group {
  flex: 1;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-col p {
  color: #9ca3af;
  margin-bottom: 10px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #9ca3af;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: #6b7280;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .main-nav .container {
    flex-direction: column;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    padding: 15px;
  }
  
  .btn.btn-red {
    display: none; /* Hide on mobile nav for simplicity */
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .about-row, .about-row.reverse {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
