/* Forest Gold Architecture Studio Theme - Complete CSS */

/* ========================================
   ROOT VARIABLES & IMPORTS
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #2C5F41;
  --primary-dark: #1a3827;
  --primary-light: #3d7f59;
  --secondary-color: #D4AF37;
  --secondary-dark: #b89420;
  --secondary-light: #e5c961;
  --forest-deep: #1e4d33;
  --forest-mist: #e8f5e0;
  --gold-shimmer: #f4e5b8;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(44, 95, 65, 0.1);
  --shadow-md: 0 4px 16px rgba(44, 95, 65, 0.15);
  --shadow-lg: 0 8px 32px rgba(44, 95, 65, 0.2);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.3s ease;
}

/* ========================================
   GLOBAL STYLES & RESETS
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--primary-color) !important;
  line-height: 1.3;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-light) !important;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   HERO SLIDESHOW SECTION
======================================== */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 95, 65, 0.85) 0%, rgba(28, 77, 51, 0.75) 50%, rgba(212, 175, 55, 0.3) 100%);
  z-index: 1;
}

.slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}

/* ========================================
   NAVIGATION BAR
======================================== */
.navbar {
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
  background: transparent !important;
}

.navbar.sticky-top {
  background: rgba(44, 95, 65, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.875rem 0;
}

.navbar-dark .navbar-brand {
  color: var(--white) !important;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.75rem !important;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-brand:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.navbar-toggler {
  border: 2px solid var(--secondary-color) !important;
  background-color: rgba(212, 175, 55, 0.2) !important;
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.4) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.625rem 1.25rem !important;
  position: relative;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-item.active .nav-link {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

.nav-item.active .nav-link::before {
  width: 80%;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 0;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary,
.btn.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary-dark) !important;
  border-color: var(--secondary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4) !important;
}

.btn-secondary,
.btn.btn-secondary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: var(--secondary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 95, 65, 0.4) !important;
}

.btn-outline-dark,
.btn.btn-outline-dark {
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  border-width: 2px;
  background: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-secondary,
.btn.btn-outline-secondary {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  border-width: 2px;
  background: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ========================================
   HERO CONTENT
======================================== */
.hero-slideshow .position-absolute.top-50 {
  z-index: 10;
}

.hero-slideshow .display-1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white) !important;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s both;
  letter-spacing: 2px;
}

.hero-slideshow .fs-2 {
  font-size: clamp(1.125rem, 3vw, 1.5rem) !important;
  color: var(--gold-shimmer) !important;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-slideshow .btn {
  animation: fadeInUp 1s ease-out 0.9s both;
}

/* ========================================
   CARDS
======================================== */
.card {
  border: none !important;
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  background: var(--white);
  height: 100%;
}

.card.shadow,
.card.shadow-sm,
.card.shadow-lg {
  box-shadow: var(--shadow-md) !important;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg) !important;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
  z-index: 10;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card:hover .card-img-top {
  transform: scale(1.08);
}

.card-body {
  padding: 1.75rem;
  background: var(--white);
}

.card-title {
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.card-text {
  color: var(--text-light) !important;
  font-size: 0.975rem;
  line-height: 1.7;
}

.card.border-0 {
  border: none !important;
}

/* ========================================
   PORTFOLIO ITEMS
======================================== */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
  height: 400px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: var(--primary-dark);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(44, 95, 65, 0.95) 0%, rgba(44, 95, 65, 0.7) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
  transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

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

.portfolio-overlay h4,
.portfolio-overlay .h4 {
  color: var(--white) !important;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.portfolio-overlay p {
  color: var(--gold-shimmer) !important;
  margin-bottom: 1rem;
}

.portfolio-overlay .btn {
  align-self: flex-start;
}

/* ========================================
   FILTER BUTTONS
======================================== */
.filter-btn {
  background: transparent;
  border: 2px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  padding: 0.625rem 1.75rem;
  margin: 0.375rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  border-radius: 0;
}

.filter-btn:hover,
.filter-btn:focus {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active {
  background: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  font-weight: 700;
}

/* ========================================
   BADGES
======================================== */
.badge {
  background-color: var(--secondary-color) !important;
  color: var(--primary-dark) !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-primary {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

/* ========================================
   SECTIONS
======================================== */
section {
  position: relative;
  padding: 5rem 0;
}

.bg-light,
section.bg-light {
  background-color: var(--forest-mist) !important;
}

.bg-dark,
section.bg-dark {
  background-color: var(--primary-dark) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-dark .display-1,
.bg-dark .display-2,
.bg-dark .display-3,
.bg-dark .display-4,
.bg-dark .display-5 {
  color: var(--white) !important;
}

.bg-dark p,
.bg-dark .lead {
  color: rgba(255, 255, 255, 0.85) !important;
}

section .container {
  position: relative;
  z-index: 2;
}

/* ========================================
   PROJECT ITEMS
======================================== */
.project-item {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.project-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-color);
}

.project-item h3,
.project-item .h3 {
  color: var(--primary-color) !important;
  margin-bottom: 1rem;
}

.project-item .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ========================================
   FORMS
======================================== */
.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white);
  color: var(--text-dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(44, 95, 65, 0.15) !important;
  background: var(--white);
}

.form-control-lg,
.form-select-lg {
  padding: 1.125rem 1.5rem;
  font-size: 1.125rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color) !important;
  margin-bottom: 0.625rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-check-input {
  border: 2px solid var(--primary-color);
  border-radius: 0;
  width: 1.25rem;
  height: 1.25rem;
}

.form-check-input:checked {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(44, 95, 65, 0.15) !important;
}

.form-check-label {
  color: var(--text-dark);
  margin-left: 0.5rem;
}

.invalid-feedback {
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.form-control.is-invalid {
  border-color: #dc3545 !important;
}

.needs-validation .form-control:invalid {
  border-color: #dc3545;
}

/* ========================================
   ALERTS
======================================== */
.alert {
  border-radius: 0;
  border: none;
  border-left: 4px solid transparent;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
}

.alert-success {
  background-color: rgba(44, 95, 65, 0.1) !important;
  color: var(--primary-color) !important;
  border-left-color: var(--primary-color);
}

/* ========================================
   ACCORDION
======================================== */
.accordion {
  border: none;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  margin-bottom: 1rem;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: var(--white) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.25rem 1.5rem;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  font-family: 'Cormorant Garamond', serif;
}

.accordion-button:not(.collapsed) {
  background: var(--forest-mist) !important;
  color: var(--primary-dark) !important;
  border-left: 4px solid var(--secondary-color);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C5F41'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4AF37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  background: var(--white);
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   PROGRESS BARS
======================================== */
.progress {
  height: 2rem;
  border-radius: 0;
  background-color: #e9ecef;
  overflow: visible;
}

.progress-bar {
  background-color: var(--secondary-color) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark) !important;
  position: relative;
  transition: width 1.5s ease-in-out;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

footer h3,
footer h4,
footer h5,
footer .h3,
footer .h4,
footer .h5 {
  color: var(--white) !important;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer p,
footer .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer a:hover {
  color: var(--secondary-color) !important;
  transform: translateX(4px);
}

footer .list-unstyled li {
  margin-bottom: 0.75rem;
  padding-left: 0;
}

footer .list-unstyled a {
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

footer .list-unstyled a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

footer .list-unstyled a:hover::before {
  transform: translateX(4px);
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.border-start {
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   BOOTSTRAP ICONS
======================================== */
.bi {
  vertical-align: middle;
  display: inline-block;
}

.bi-geo-alt-fill,
.bi-calendar3,
.bi-telephone-fill,
.bi-envelope-fill,
.bi-linkedin,
.bi-instagram,
.bi-facebook,
.bi-twitter,
.bi-calendar-check,
.bi-tools,
.bi-award,
.bi-check-circle-fill,
.bi-hammer,
.bi-people,
.bi-house-door,
.bi-lightbulb,
.bi-clock-fill,
.bi-send-fill {
  color: var(--secondary-color) !important;
  margin-right: 0.5rem;
  font-size: 1.125rem;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow,
.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.rounded {
  border-radius: 0 !important;
}

.rounded-3 {
  border-radius: 0 !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vh-100 {
  height: 100vh !important;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}

/* ========================================
   RATIO (VIDEO EMBEDS)
======================================== */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

/* ========================================
   RESPONSIVE TYPOGRAPHY
======================================== */
@media (max-width: 1200px) {
  .display-1 {
    font-size: 4.5rem;
  }
  
  .display-3 {
    font-size: 3.5rem;
  }
  
  .display-4 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .display-1 {
    font-size: 3.5rem;
  }
  
  .display-3 {
    font-size: 2.75rem;
  }
  
  .display-4 {
    font-size: 2.25rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  .display-1 {
    font-size: 2.75rem;
  }
  
  .display-3 {
    font-size: 2.25rem;
  }
  
  .display-4 {
    font-size: 1.875rem;
  }
  
  .hero-slideshow .display-1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-slideshow .fs-2 {
    font-size: 1.125rem !important;
    margin-bottom: 1.5rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
  
  .portfolio-item {
    height: 300px;
  }
  
  .card-img-top {
    height: 200px;
  }
  
  footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.375rem !important;
  }
  
  .nav-link {
    padding: 0.75rem 1rem !important;
  }
  
  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
  }
  
  .display-1 {
    font-size: 2.25rem;
  }
  
  .hero-slideshow .display-1 {
    font-size: 2rem;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .portfolio-item {
    height: 250px;
  }
  
  .portfolio-overlay {
    padding: 1.25rem;
  }
  
  section {
    padding: 2.5rem 0;
  }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .navbar,
  .btn,
  footer,
  .filter-btn {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .card,
  .portfolio-item {
    page-break-inside: avoid;
  }
}