/* Luxury Water Theme CSS */
:root {
  /* Colors */
  --deep-ocean-blue: #003B5C;
  --pearl-white: #F5F5F5;
  --gold: #D4AF37;
  --aqua-teal: #40E0D0;
  --sand-beige: #E6D2B5;
  --coral: #FF7F50;
  
  /* Fonts */
  --serif-font: 'Cormorant Garamond', Georgia, serif;
  --sans-serif-font: 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans-serif-font);
  background-color: var(--pearl-white);
  color: var(--deep-ocean-blue);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif-font);
  font-weight: 400;
  color: var(--deep-ocean-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gold);
}

a {
  text-decoration: none;
  color: var(--deep-ocean-blue);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--aqua-teal);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gold);
  color: var(--pearl-white);
  border: none;
  font-family: var(--sans-serif-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn:hover {
  background: var(--aqua-teal);
  color: var(--deep-ocean-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  background-color: rgba(0, 59, 92, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 15px 0;
  background-color: rgba(0, 59, 92, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif-font);
  font-size: 1.8rem;
  color: var(--pearl-white);
  font-weight: 400;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--pearl-white);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 59, 92, 0.7), rgba(0, 59, 92, 0.7)), 
              url('/img/photo-1740444982084-c182e2f372d1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--pearl-white);
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  color: var(--pearl-white);
  margin-bottom: 20px;
  font-size: 4rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

/* Water-inspired divider */
.water-divider {
  height: 20px;
  background: linear-gradient(90deg, var(--aqua-teal), var(--gold));
  margin: 50px 0;
  border-radius: 10px;
}

/* Cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: var(--pearl-white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img {
  height: 250px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  margin-bottom: 15px;
  color: var(--deep-ocean-blue);
}

.card-content p {
  margin-bottom: 20px;
  color: #666;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: var(--pearl-white);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: var(--deep-ocean-blue);
  color: var(--pearl-white);
  padding: 50px 0 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 30px;
}

.footer-logo {
  font-family: var(--serif-font);
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--gold);
}

.social-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 30px 0;
}

.social-links li {
  margin: 0 15px;
}

.social-links a {
  color: var(--pearl-white);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: block;
    color: var(--pearl-white);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  section {
    padding: 60px 0;
  }
}

/* Water ripple effect */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(64, 224, 208, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border: 3px solid var(--pearl-white);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: var(--pearl-white);
  cursor: pointer;
}