:root {
  --bg-color: #080808;
  --primary-color: #36d169;
  --secondary-color: #750b95ce;
  --text-color: #fff;
  --font-family: 'Arial', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo {
  max-height: 50px; /* limit max height to fit inside navbar */
  height: auto;     /* maintain aspect ratio */
  width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    height: 50px;
    padding: 0 1rem;
  }
  .logo {
    max-height: 40px; /* smaller logo on mobile */
  }
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
}

.navbar .logo {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}
.logo {
  height: 100%;   /* makes logo height equal to navbar height */
  width: auto;    /* maintains aspect ratio */
}
/* Hamburger button */
/* Hamburger button */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px; /* height of navbar */
    right: 0;
    width: 200px;
    padding: 1rem;
    display: none; /* hidden by default */
  }

  /* Show nav-links when toggled */
  .nav-links.show {
    display: flex;
    flex-direction: column;
  }
}


/* Sections */
section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Contact Section */
.contact-section {
  max-width: 800px;
  text-align: center;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-details p {
  margin: 0.5rem 0;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  background: #222;
  border: 1px solid #333;
  color: var(--text-color);
  border-radius: 5px;
}

.contact-form button {
  background: var(--primary-color);
  color: var(--text-color);
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.contact-form button:hover {
  background: var(--secondary-color);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: rgba(58, 58, 58, 0.85);
}

/* Responsive */
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }
}

/* Fullscreen Slideshow */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

.slideshow-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 5%;
  background: rgba(0,0,0,0.35);
  color: white;
}

.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.hero-overlay .tagline {
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.hero-overlay a {
  color: white;
  text-decoration: none;
}

.hero-overlay a:hover {
  text-decoration: underline;
}

.hero-cta .btn {
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  margin-top: 1rem;
  margin-right: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-cta .btn:hover {
  background: var(--secondary-color);
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.active-dot {
  background-color: var(--primary-color);
}

/* Featured Styles 2x2 Grid */
.showcase {
  padding: 3rem;
  max-width: 1200px;
  margin: auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.card h4 {
  text-align: center;
  margin-top: 0.5rem;
}

@media(max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}
.footer {
  background: rgba(34, 33, 33, 0.85);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-icons {
  margin-bottom: 1rem;
}

.footer-icons a {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: var(--primary-color);
}

.footer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.page-header-section {
  background: rgba(92, 255, 100, 0.1); /* subtle green background */
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 4px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
}
.price-list {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  color: var(--text-color);
}

.price-list h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.price-category {
  margin-bottom: 2.5rem;
  background: rgba(255, 92, 162, 0.1);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 92, 162, 0.15);
}

.price-category h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.price-category ul {
  list-style: none;
}

.price-category li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
}

.price-category li:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 600;
  letter-spacing: 0.5px;
  max-width: 75%;
}

.service-price {
  font-weight: 700;
  color: var(--primary-color);
  min-width: 80px;
  text-align: right;
}
.btn {
  background-color: #28a745;  /* Bootstrap green */
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;        /* Rounded edges */
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;      /* Remove underline for links */
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #218838;  /* Darker green on hover */
}
.compose-email {
  display: inline-block;
  background-color: #014315; /* Gmail red */
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: background 0.3s;
}
.compose-email:hover {
  background-color: #b1271e;
}

