/* Watercolor Design System */

:root {
  --color-bg-paper: #fdfbf7;
  --color-primary-watercolor: #a8d5e2;
  --color-secondary-watercolor: #f5b7b1;
  --color-accent-watercolor: #abebc6;
  --color-text-main: #2c3e50;
  --color-text-header: #34495e;
  --font-heading: 'Amatic SC', cursive;
  --font-body: 'Open Sans', sans-serif;
  --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-paper);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-header);
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Utilities */

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

/* Watercolor Effects */

/* .watercolor-monitor { } - Reserved for future paper texture overlay */

.watercolor-edge {
  border-radius: 2px 255px 3px 25px / 255px 5px 225px 3px;
  box-shadow: var(--shadow-soft);
}

.watercolor-bg-blue {
  background-image: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
  opacity: 0.8;
}

.watercolor-bg-pink {
  background-image: linear-gradient(120deg, #fccb90 0%, #d57eeb 100%);
  opacity: 0.8;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--color-primary-watercolor);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

/* Navigation */

.main-nav {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-header);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.3s;
}

/* Dropdown Menu */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 5px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  font-family: var(--font-body);
}

.dropdown-content a:hover {
  background-color: var(--color-primary-watercolor);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.nav-links a:hover, .dropbtn:hover {
  color: var(--color-primary-watercolor);
}

/* Hero Section */

.hero-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: sepia(30%) contrast(90%) brightness(110%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-text-header);
  margin-bottom: 20px;
}

/* Services Section */

.services-section {
  padding: 80px 0;
  background-color: var(--color-bg-paper);
}

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

.service-card {
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  filter: sepia(20%);
}

.card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--color-primary-watercolor), #8ec5d6);
  color: white;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  border-radius: 30px 255px 20px 235px / 235px 20px 255px 30px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(168, 213, 226, 0.4);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(168, 213, 226, 0.6);
}

.btn-sm {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-secondary-watercolor);
  color: white;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  border-radius: 20px;
  transition: all 0.3s;
  margin-top: auto;
}

.btn-sm:hover {
  background-color: #ef9a9a;
}

/* Gallery Section */

.gallery-section {
  padding: 80px 0;
}

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

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s opacity 0.3s;
  filter: contrast(95%) brightness(105%);
}

.gallery-grid img:hover {
  transform: scale(1.03) rotate(1deg);
  z-index: 10;
}

/* Footer */

.main-footer {
  background-color: var(--color-text-header);
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-top: 50px;
}

.main-footer a {
  color: var(--color-primary-watercolor);
  text-decoration: none;
}

/* Responsive */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* New Section Styles */

/* Mission */

.mission-section {
  padding: 60px 0;
  text-align: center;
}

.mission-content {
  background-color: white;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

/* Tech & Features */

.tech-section {
  padding: 80px 0;
  background-color: white;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

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

.feature-text {
  flex: 1;
}

.feature-img {
  flex: 1;
}

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

/* Location */

.location-section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--color-bg-paper);
}

.full-width-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-bottom: 20px;
}

.location-address {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-primary-watercolor);
}

/* Hero Buttons */

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.btn-secondary {
  background: white;
  color: var(--color-text-header);
  border: 2px solid var(--color-primary-watercolor);
}

.btn-secondary:hover {
  background: var(--color-primary-watercolor);
  color: white;
}

@media (max-width: 768px) {
  .feature-row, .feature-row.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* Form Styles */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-text-header);
}

.form-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
  border-color: var(--color-primary-watercolor);
  outline: none;
  box-shadow: 0 0 0 3px rgba(168, 213, 226, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

/* Specific Grid adjust for contact page if needed */

.form-container {
}

