:root {
  --primary: #00778C;
  --secondary: #F8F1E5;
  --bg-color: #ffffff;
  --text-color: #171717;
  --text-muted: #4a4a4a;
  --border-color: #e0e0e0;
  --serif-font: 'Playfair Display', serif;
  --sans-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--sans-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif-text {
  font-family: var(--serif-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section with Immersive Background */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
              url('https://images.unsplash.com/photo-1589553416260-158fa9c95963?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(4px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--secondary);
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  margin-left: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

.logo {
  font-family: var(--serif-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 0 !important;
}

/* Content Sections */
.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 1rem auto 0;
}

/* Info Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--bg-color);
  border: 1px solid var(--secondary);
  padding: 2.5rem;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 119, 140, 0.05);
  border-color: var(--primary);
}

.card-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Secondary Section Accent */
.accent-bg {
  background-color: var(--secondary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #005a6b;
  box-shadow: 0 5px 15px rgba(0, 119, 140, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* Photography Grid */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-item {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* Footer */
footer {
  background-color: var(--bg-color);
  padding: 4rem 0;
  border-top: 1px solid var(--secondary);
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav a {
    margin: 0 0.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .photo-gallery {
    grid-template-columns: 1fr;
  }
}