/* Photography Page Styles */
:root {
  --primary-blue: #2B57FF;
  --primary-orange: #FF6B2B;
  --text-primary: #333;
  --text-secondary: #666;
  --bg-card: linear-gradient(to right, var(--bg-dark), hsl(226, 76%, 17%), #4220aa)
  --shadow-primary: rgba(79,140,255,0.10);
}

/* Hero Section */
.photography-hero {
  padding: 4em 0;
  text-align: center;
  background: linear-gradient(to bottom, rgba(43, 87, 255, 0.05), transparent);
  color: white;
}

.photography-hero h1 {
  color: white;
  margin-bottom: 0.5em;
}

.photography-hero h3 {
  color: white;
  margin-top: 2em;
  margin-bottom: 0.8em;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.photography-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1em;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.photography-hero ul {
  list-style: none;
  padding: 0;
  margin: 1em auto 2em auto;
  text-align: left;
  max-width: 800px;
}

.photography-hero li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  position: relative;
  line-height: 1.5;
}

.photography-hero li:before {
  content: "•";
  color: var(--primary-orange);
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1.5;
}

.photography-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}

/* Service Description */
.service-description {
  background: var(--bg-card);
  padding: 2em;
  border-radius: 18px;
  margin-bottom: 3em;
  box-shadow: 0 4px 24px var(--shadow-primary);
}

.service-description h2 {
  color: var(--primary-orange);
  margin-bottom: 1em;
  font-size: 2.2em;
}

.service-description p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

/* Services List */
.services-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
}

.services-list li {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1em;
  padding-left: 1.5em;
  position: relative;
}

.services-list li:before {
  content: "•";
  color: var(--primary-orange);
  position: absolute;
  left: 0;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5em;
  margin-top: 3em;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 24px var(--shadow-primary);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1em;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Navigation */
.navbar {
  background: var(--bg-card);
  padding: 1em 2em;
  box-shadow: 0 2px 10px var(--shadow-primary);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  color: var(--text-primary);
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2em;
  list-style: none;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .photography-content {
    padding: 1.5em;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .photography-hero {
    padding: 2em 0;
  }
  
  .photography-content {
    padding: 1em;
  }
  
  .service-description {
    padding: 1.5em;
  }
  
  .service-description h2 {
    font-size: 1.8em;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1em;
  }
}

@media (max-width: 480px) {
  .photography-hero {
    padding: 1.5em 0;
  }
  
  .service-description {
    padding: 1em;
  }
  
  .service-description h2 {
    font-size: 1.5em;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    aspect-ratio: 3/2;
  }
}

/* Loading Animation */
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2em auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Image Modal Styles */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  padding-top: 60px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.modal-image {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-button:hover,
.close-button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Add animation */
.image-modal {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
} 