:root {
  --font-heading: 'Italiana', serif;
  --font-body: 'Inter', sans-serif;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-header,
.site-title,
header h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav,
.navbar-brand,
.nav-link {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* Navbar full-width styling */
.navbar {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  z-index: 1050;
}


.navbar .container {
  padding: 0 15px;
}

p {
  font-family: var(--font-body);
}

section[id] {
  scroll-margin-top: 70px; /* Adjust this number to match the height of your navbar */
}

/* Full-width container styling */
.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* Hero Section */
.hero-section {
  width: 100%;
  background-size: cover; 
  background-position: center;
  height: 80vh; 
  min-height: 500px; /* Ensures it doesn't get too small on mobile */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-btn {
  font-family: 'Italiana', serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b6f47;
}

/* About Section Styling */
.about-section {
  padding: 60px 20px;
  text-align: center;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #2b2b2b;
}

.verity {
  color: #8b6f47;
}

/* Grid Layout - Desktop */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Circular Photo in Center */
.about-circle {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-circle img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Text Block Positioning */
.about-left-top {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  text-align: right;
  padding-right: 20px;
}

.about-left-bottom {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  text-align: right;
  padding-right: 20px;
}

.about-right-top {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  text-align: left;
  padding-left: 20px;
}

.about-right-bottom {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  text-align: left;
  padding-left: 20px;
}

/* Text Block Styling */
.about-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #2b2b2b;
}

.about-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Mobile Responsive Layout */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }
  
  .about-left-top,
  .about-left-bottom,
  .about-right-top,
  .about-right-bottom {
    grid-column: 1 / 2;
    text-align: center;
    padding: 0 20px;
  }
  
  .about-circle {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  
  .about-circle img {
    width: 300px;
    height: 300px;
  }
  
  /* Mobile stacking order */
  .about-left-top {
    grid-row: 1;
  }
  
  .about-left-bottom {
    grid-row: 2;
  }
  
  .about-circle {
    grid-row: 3;
  }
  
  .about-right-top {
    grid-row: 4;
  }
  
  .about-right-bottom {
    grid-row: 5;
  }
}

/* Pricing Section Styling */
.pricing-section {
  padding: 60px 0;
  background-color: #fff;
}

.pricing-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #2b2b2b;
}

.pricing-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #8b6f47;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #2b2b2b;
}

.pricing-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing-img {
    min-height: 200px;
  }
}

/* Contact Section Styling */
.contact-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #2b2b2b;
}

.contact-subheading {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.form-control {
  font-family: var(--font-body);
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #8b6f47;
  box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.25);
  outline: none;
}

.submit-btn {
  font-family: var(--font-heading);
  background-color: #8b6f47;
  border: none;
  color: #fff;
  padding: 12px 50px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #6f5638;
  transform: translateY(-2px);
}


/* Mobile Responsive */
@media (max-width: 576px) {
  .contact-form {
    padding: 25px;
  }
}

/* Active Navigation Link Styling */
.nav-link.active {
  font-weight: 600;
  color: #8b6f47 !important;
}

/* Submit Button Disabled State */
.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-btn:disabled:hover {
  background-color: #ccc;
  transform: none;
}

/* Image Protection - Prevent copying and selection */
img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Gallery Section Styling - Responsive Masonry Layout */
.gallery-section {
  width: 100%;
}

#portfolio-photos img {
  width: 100%;
  line-height: 1em;
  display: block;
}

#portfolio-photos {
  line-height: 0;
  margin: 0;
}

#portfolio-photos img {
  margin: 0;
}

/* Responsive gallery columns */
/* Mobile: 1 column */
@media screen and (max-width: 575px) {
  #portfolio-photos {
    column-count: 1;
    column-gap: 0;
  }
}

/* Tablets: 2 columns (576px and up) */
@media screen and (min-width: 576px) {
  #portfolio-photos {
    column-count: 2;
    column-gap: 0;
  }
}

/* Medium tablets: 3 columns (768px and up) */
@media screen and (min-width: 768px) {
  #portfolio-photos {
    column-count: 3;
    column-gap: 0;
  }
}

/* Large screens: 4 columns (992px and up) */
@media screen and (min-width: 992px) {
  #portfolio-photos {
    column-count: 4;
    column-gap: 0;
  }
}

/* Hero image alignment on small screens */


/* 1. Medium/Small phones (iPhone 14/15 Pro) */
@media (max-width: 425px) {
  .hero-section {
    background-position: left 40px center !important;
  }
}

/* 2. Extra small phones (iPhone SE) */
@media (max-width: 375px) {
  .hero-section {
    background-position: left center !important;
  }
}