        @import url('../index.css');

/* Navigation Styles */
.navbar {
    background: #982037;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
}

/* Slider Styles */

/* Enhanced Slider Styles */
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  max-width: 1200px;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.10);
  padding: 2rem 1rem;
}

.slider-arrow {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  font-size: 2.5rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(102,126,234,0.18);
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem;
}

.slider-arrow:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: scale(1.12);
}

.slider {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 900px;
  height: 600px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  transition: opacity 0.5s, transform 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
}

.slider-image.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.06);
  box-shadow: 0 12px 48px rgba(102,126,234,0.18);
}

@media (max-width: 1200px) {
  .slider {
    width: 80vw;
    height: 48vw;
    max-height: 500px;
  }
  .slider-container {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
}

@media (max-width: 800px) {
  .slider {
    width: 95vw;
    height: 260px;
    border-radius: 16px;
  }
  .slider-container {
    padding: 1rem 0.2rem;
    border-radius: 16px;
  }
  .slider-arrow {
    width: 48px;
    height: 48px;
    font-size: 2rem;
    margin: 0 0.5rem;
  }
}

/* Footer Styles */

.page-header {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 0 0 0;
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.page-header p {
  font-size: 1.25rem;
  color: #6c757d;
  font-weight: 400;
  margin: 0 auto;
  max-width: 600px;
  display: block;
}

.footer-section:nth-child(2) {
  padding-left: 4rem;
}

@media (max-width: 768px) {
  .footer-section:nth-child(2) {
    padding-left: 1rem;
  }
}

.footer-title {
  font-family: var(--font-primary);
  color: var(--brand-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-description {
  font-family: var(--font-accent);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  font-family: var(--font-accent);
  color: var(--brand-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-family: var(--font-accent);
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.contact-info p {
  font-family: var(--font-accent);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-section p {
  font-family: var(--font-accent);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-accent);
}

.newsletter-btn {
  background: var(--brand-secondary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-accent);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-btn:hover {
  background: var(--brand-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-accent);
  color: var(--white);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a {
  font-family: var(--font-accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--brand-primary);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

.image-container {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.image-info {
    padding: 2rem;
    background: white;
}

.image-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.image-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.image-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.image-meta span {
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 7rem;
        flex-direction: column;
        background-color: #982037;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-categories {
        gap: 0.5rem;
    }

    .image-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .image-info {
        padding: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 