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

body {
    font-family: "Poppins", sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav .navbar-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

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

nav ul li {
    position: relative; /* Needed for dropdown positioning */
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: gray;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* right below parent */
    left: 0;
    background: #000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: gray;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #000;
    color: white;
}

/* Show dropdown on hover (desktop) */
nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger Button (hidden by default) */
.navbar-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    /* Show hamburger button */
    .navbar-toggle {
        display: block;
        z-index: 10001;
    }

    /* Hide the menu by default */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    /* Show menu when active */
    nav ul.active {
        display: flex;
    }

    /* Center menu items vertically */
    nav ul li {
        text-align: center;
        margin: 0.5rem 0;
    }

    /* Dropdowns inside mobile menu */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
    }

    .dropdown-menu li a {
        padding: 0.6rem 1rem;
    }

    /* Show dropdown when parent is tapped/clicked */
    nav ul li.dropdown .dropdown-menu {
        display: none;
    }

    nav ul li.dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Section General */
#pricing {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 4rem 8%;
  text-align: center;
}

/* Header */
.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* Intro */
.pricing-intro {
  margin-bottom: 3rem;
}

.pricing-intro h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-intro p {
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.pricing-card {
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.pricing-card h2 span {
  font-size: 1rem;
  color: #bbb;
}

.pricing-card p {
  color: #aaa;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-card ul li {
  margin: 0.5rem 0;
  color: #ddd;
  font-size: 0.9rem;
}

.albums-section h3 {
  font-size: 1.8rem;
  color: #444; 
  margin-bottom: 10px;
  text-align: center;
}

/* Call to Action */
.cta {
  position: relative;
  background: url("images/camera.jpg") no-repeat center center/cover;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 3rem;
}

.cta-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-overlay h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-overlay h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-overlay button {
  background: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  color: black;
  font-weight: 600;
  cursor: pointer;
}

.cta-overlay button:hover {
  background: #444;
}

/* Footer Styles */
.footer {
    background-color: #000; /* Black background for the footer */
    padding: 20px 0;
    border-top: 1px solid #111; /* Light gray border at the top */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Space between logo, nav, and social icons */
    align-items: center; /* Vertically center the content */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add padding on the sides */
}

.footer-content .logo {
    font-family: "Playfair Display", serif;
    font-size: 1.5em;
    font-weight: bold;
}

.footer-nav, .social-icons, .footer-bottom-nav {
    display: flex;
    gap: 20px; /* Space between each list item */
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a, .footer-bottom-nav a {
    text-decoration: none;
    color: #fff;
}

.footer-nav a:hover, .footer-bottom-nav a:hover {
    color: #444; /* Add hover effect for links */
}

.social-icons {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin-top: 20px;
}

.social-icons li a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons li a:hover {
  color: #444; /* Green hover color */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto 0; /* Center align and space above */
    padding: 0 20px; /* Add padding on the sides */
    border-top: 1px solid #ddd; /* Light gray border on top */
    padding-top: 10px; /* Add padding on top after the border */
    font-size: 0.9em; /* Slightly smaller text for the bottom section */
    color: #fff;
}

.footer-bottom-nav {
    gap: 15px; /* Smaller gap for the bottom nav links */
}

/* Responsive Styles */
@media (max-width: 768px) {
      .footer-content {
        flex-direction: column; /* Stack footer items vertically */
        text-align: center; /* Center text */
    }

    .footer-nav, .social-icons, .footer-bottom-nav {
        flex-direction: column; /* Stack items vertically */
        gap: 8px; /* Reduced space between footer items */
    }

    .footer-bottom-nav {
        margin-top: 15px; /* Add space above bottom navigation */
    }
}

/* === Animation Styles === */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Initially hide elements */
#pricing,
.pricing-header,
.pricing-intro,
.pricing-card,
.cta {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* When the 'show' class is added, trigger animation */
#pricing.show,
.pricing-header.show,
.pricing-intro.show,
.pricing-card.show,
.cta.show {
  animation: fadeInUp 1s ease forwards;
}

/* Optional staggered effect for cards */
.pricing-card:nth-child(1) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.4s;
}
.pricing-card:nth-child(3) {
  animation-delay: 0.6s;
}
