/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

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

/* Header Styles */
.header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #999;
  align-items: flex-end;
}

.logo {
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: -10px;
}

.logo .subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  color: #666;
  font-weight: 400;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #999;
  font-size: 14px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #333;
}

/* Navigation */
.navigation {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: 10px auto;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 20px 0;
}

.navigation a {
  text-decoration: none;
  color: #666;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.navigation a:hover,
.navigation a.active {
  color: #333;
}

.navigation a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #333;
}

/* Hero Gallery */
.hero-gallery {
  padding: 60px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.hero-item {
  overflow: hidden;
  aspect-ratio: 1;
}

.hero-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.hero-item:hover img {
  transform: scale(1.05);
}

/* Meet Section */
.meet-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.meet-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.meet-image {
  flex: 1;
}

.meet-image img {
  width: 100%;
  height: auto;
  display: block;
}

.meet-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-box {
  background-color: #b8c9d4;
  padding: 60px 50px;
  max-width: 500px;
}

.text-box h2 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

.text-box p {
  font-size: 13px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}

.btn-primary {
  display: inline-block;
  background-color: #555;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  transition: background-color 0.3s;
  margin: 0 auto;
  display: block;
  text-align: center;
  width: fit-content;
}

.btn-primary:hover {
  background-color: #333;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #333;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  border: 1px solid #333;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #333;
  color: #fff;
}

.btn-secondary i {
  margin-right: 8px;
}

/* Footer */
.footer {
  background-color: #2b2b2b;
  color: #999;
  text-align: center;
  padding: 30px 0;
  font-size: 11px;
  letter-spacing: 1px;
}

.footer strong {
  color: #fff;
}

/* About Page Styles */
.about-hero,
.gallery-hero,
.services-hero,
.contact-hero {
  padding: 80px 0 60px;
  text-align: center;
  background-color: #f8f8f8;
  margin-bottom: 40px;
}

.about-hero h1,
.gallery-hero h1,
.services-hero h1,
.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #333;
  margin-bottom: 15px;
}

.gallery-hero p,
.services-hero p,
.contact-hero p {
  font-size: 14px;
  color: #666;
  letter-spacing: 1px;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-story h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #333;
}

.about-story p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.credentials {
  text-align: center;
}

.credentials h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #333;
}

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

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

.credential-item i {
  font-size: 2.5rem;
  color: #b8c9d4;
  margin-bottom: 20px;
}

.credential-item h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #333;
}

.credential-item p {
  font-size: 12px;
  color: #666;
}

/* Gallery Page Styles */
.full-gallery {
  padding: 80px 0;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item-full {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item-full:hover img {
  transform: scale(1.1);
}

.gallery-item-full .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item-full:hover .overlay {
  transform: translateY(0);
}

.gallery-item-full .overlay span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
}

.gallery-cta, .about-cta {
  text-align: center;
  margin-top: 60px;
}

.gallery-cta h2, .about-cta h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #333;
}

/* Services Page Styles */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.service-card {
  background-color: #f8f8f8;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 2.5rem;
  color: #b8c9d4;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #333;
}

.service-card > p {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  font-size: 12px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.service-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 5px;
}

.pricing-note p {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.pricing-note i {
  margin-right: 8px;
  color: #b8c9d4;
}

/* Contact Page Styles */

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
  width: 100%;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #333;
}

.contact-info > p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
}

.contact-item i {
  font-size: 1.5rem;
  color: #b8c9d4;
  width: 30px;
  flex-shrink: 0;
  text-align: center;
}

.contact-item h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #333;
}

.contact-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.social-connect {
  margin-top: 40px;
}

.social-connect h3 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #333;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.social-connect-large {
  text-align: center;
  width: 100%;
  padding: 40px 0;
}

.social-connect-large h2 {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #333;
}

.social-connect-large p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.social-connect-large .social-links {
  justify-content: center;
  gap: 20px;
}

.social-connect-large .social-links a {
  width: 50px;
  height: 50px;
  font-size: 18px;
}

.contact-form-wrapper {
  background-color: #f8f8f8;
  padding: 50px;
}

.contact-form h2 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #333;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b8c9d4;
}

.contact-form .btn-primary {
  width: 100%;
  cursor: pointer;
  border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-top {
    padding: 20px 30px;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 30px;
  }

  .meet-content {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    text-align: center;
  }

  .contact-section {
    align-items: center;
  }

  .logo {
    position: static;
    transform: none;
  }

  .logo h1 {
    font-size: 2.5rem;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: left 0.3s;
    padding-top: 80px;
    gap: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a {
    font-size: 14px;
    display: block;
    padding: 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .text-box {
    padding: 40px 30px;
  }

  .gallery-grid,
  .gallery-grid-full {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}
