/* Base styles */
:root {
    --color-primary: #ec4899;
    --color-primary-dark: #be185d;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  }
  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
html {
    scroll-behavior: smooth;
    height: 100%;
}
  
body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: var(--color-gray-900);
    background-color: var(--color-gray-50);
}

body.nav-active {
    overflow: hidden;
}
  
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
  
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
}
  
/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
    text-align: center;
}
  
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}
  
.btn-secondary {
    display: inline-block;
    background-color: white;
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}
  
.btn-secondary:hover {
    background-color: var(--color-gray-100);
    transform: translateY(-2px);
}
  
/* Navigation */
.navbar {
    background-color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
}
  
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
    padding: 0 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}
  
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-900);
    text-decoration: none;
}
  
.brand-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-primary);
}
  
.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
}
  
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
  
.nav-links a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-primary);
    transition: all 0.3s ease-in-out;
}
  
.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
    left: 0;
}
  
.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links .nav-order-btn {
    color: white;
    padding: 0.6rem 1.25rem;
}
.nav-links .nav-order-btn:hover {
    color: white;
}
  
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
    position: relative;
    width: 2rem;
    height: 2rem;
}
.mobile-menu-btn .lucide {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu-btn .close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}
.mobile-menu-btn.active .menu-icon {
    opacity: 0;
    transform: rotate(90deg);
}
.mobile-menu-btn.active .close-icon {
    opacity: 1;
    transform: rotate(0);
}
  
.mobile-nav {
    display: none;
}
  
/* Hero Section */
.hero {
    margin-top: 4.5rem;
    height: calc(100vh - 4.5rem);
    background-image: url(images/Background.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
  
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
  
.hero-content {
    position: relative;
    max-width: 64rem;
    padding: 0 1rem;
}
  
.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
  
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
  
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
  
/* Generic Section Styling */
section {
    padding: 5rem 0;
}
section:nth-of-type(odd) {
    background-color: white;
}
.gallery {
    padding-top: 5rem;
}

#full-gallery {
    margin-top: 4.5rem;
}

  
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
  
.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}
  
.section-header p {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}
  
/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
  
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}
  
.gallery-item img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}
  
.gallery-item:hover img {
    transform: scale(1.1);
}
  
.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-content {
    transform: translateY(0);
}
  
.gallery-item-content .category {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
  
.gallery-item-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
}
  
/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}
  
.about-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
}
  
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
  
.about-content p {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}
  
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
  
.feature {
    background-color: var(--color-gray-50);
    padding: 1.5rem;
    border-left: 4px solid var(--color-primary);
}
  
.feature h3 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
  
/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
  
.contact-info, .contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}
  
.contact h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
  
.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
  
.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
  
.info-item i {
    color: var(--color-primary);
    margin-top: 4px;
}
  
.info-item .label {
    font-weight: 500;
    color: var(--color-gray-900);
}
  
.form-group {
    margin-bottom: 1.5rem;
}
  
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 0.25rem;
}
  
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    font-size: 1rem;
}
  
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.2);
}
  
/* Footer */
.footer {
    background-color: var(--color-gray-900);
    color: white;
    padding: 4rem 0 2rem 0;
}
  
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
  
.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
}
  
.footer-brand p {
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
    max-width: 350px;
}
  
.social-links {
    display: flex;
    gap: 1rem;
}
  
.social-links a {
    color: var(--color-gray-400);
    transition: color 0.2s;
}
  
.social-links a:hover {
    color: var(--color-primary);
}
  
.footer h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}
  
.footer ul {
    list-style: none;
}
  
.footer ul li {
    margin-bottom: 0.5rem;
}
  
.footer ul li a {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.2s;
}
  
.footer ul li a:hover {
    color: white;
}
  
.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--color-gray-400);
}
  
/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
    
    .brand-name{
    text-align: center;
    margin-left: 27%;
    }

    .hero {
    background-image: url(images/Background2.jpg);
    }

    .nav{
        height: 20%;
        width: 20%;
    }

    .mobile-nav {
      position: fixed;
      top: 4.5rem; /* Match navbar height */
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;

      transform: translateX(100%);
      transition: transform 0.35s ease-in-out;
    }

    .mobile-nav.active {
        transform: translateX(0);
    }
  
    .mobile-nav a {
      font-size: 1.75rem;
      color: var(--color-gray-800);
      text-decoration: none;
      font-weight: 500;
    }

    .mobile-nav .order-now-btn {
        padding: 1rem 2rem;
        font-size: 1.25rem;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.125rem;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-brand .brand, .social-links {
        justify-content: center;
    }
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Custom Message Box Styles */
.custom-message-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.custom-message-box.visible {
    visibility: visible;
    opacity: 1;
}

.custom-message-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 90%;
    width: 400px;
    margin: 1rem;
    position: relative;
}

.custom-message-content p {
    font-size: 1.125rem;
    color: var(--color-gray-800);
    margin-bottom: 1.5rem;
}

.custom-message-close-btn {
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-message-close-btn:hover {
    background-color: var(--color-primary-dark);
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.lightbox.visible {
    visibility: visible;
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
}

.lightbox-description {
    color: white;
    font-size: 1.125rem;
    text-align: center;
    padding: 0 1rem;
    max-width: 80%;
    margin-bottom: 1rem;
}

.lightbox-close-btn,
.lightbox-prev-btn,
.lightbox-next-btn {
    position: absolute;
    background: rgba(0,0,0,0.3);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
.lightbox-close-btn:hover,
.lightbox-prev-btn:hover,
.lightbox-next-btn:hover {
    background: rgba(0,0,0,0.6);
}

.lightbox-close-btn {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-close-btn i {
    width: 2rem;
    height: 2rem;
}

.lightbox-prev-btn,
.lightbox-next-btn {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev-btn {
    left: 1rem;
}

.lightbox-next-btn {
    right: 1rem;
}

/* Soap Section Styles */
.soap-section {
    padding: 5rem 0;
    background-color: var(--color-gray-50);
}

.soap-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    padding-top: 2rem;
}

.soap-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
}

.soap-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gray-900);
}

.soap-details p {
    color: var(--color-gray-600);
    margin-bottom: 1rem;
}

.soap-details h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.soap-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.soap-details ul li {
    margin-bottom: 0.5rem;
    color: var(--color-gray-700);
    padding-left: 1.5rem;
    position: relative;
}

.soap-details ul li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.contact-details {
    background-color: var(--color-gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-800);
}

.contact-details i {
    color: var(--color-primary);
    width: 1.25rem;
    height: 1.25rem;
}

/* Responsive adjustments for soap section */
@media (max-width: 768px) {
  .soap-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .soap-details h3 {
    text-align: center;
  }

  .soap-image {
    order: -1;
  }

  .soap-details ul {
    text-align: left;
    padding-left: 2rem;
  }
  
}
