/* ==========================================================================
   1. CSS Reset & Variables
   ========================================================================== */
:root {
  --primary-color: #ff9800;
  --secondary-color: #ff7600;
  --dark-bg: #111;
  --darker-bg: #000;
  --light-text: #fff;
  --gray-text: #ccc;
}

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

/* ==========================================================================
   2. Base/Global Styles
   ========================================================================== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 60px;
  background: var(--dark-bg);
  color: var(--light-text);
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
}

section {
  padding: 80px 0;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ==========================================================================
   3. Layout & Container
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ==========================================================================
   4. Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: black;
  z-index: 1000;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 50px;
  height: auto;
}

/* Navigation Menu Container */
.nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

/* Navigation Menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  width: auto;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: var(--primary-color);
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.header-icons a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #ffffff;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('landing.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 152, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: var(--gray-text);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Options */
.options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.option {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 35px;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 152, 0, 0.2);
  transition: all 0.3s ease;
  min-width: 200px;
}

.option:hover {
  transform: translateY(-5px);
  background: rgba(255, 152, 0, 0.2);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.2);
}

.option img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(1);
}

.option span {
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   6. Main Content Sections
   ========================================================================== */

/* Gallery Section */
.gallery {
  background: var(--darker-bg);
  padding: 100px 0;
  position: relative;
}

.gallery h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.gallery h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 20px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
}

.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
}

.testimonials h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 20px auto 0;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 152, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  color: var(--light-text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: left;
}

.review:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 152, 0, 0.2);
  border-color: rgba(255, 152, 0, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.review img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid var(--primary-color);
}

.review-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.review-stars {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-text {
  color: var(--gray-text);
  line-height: 1.8;
  font-size: 1rem;
}

/* ==========================================================================
   7. Footer Section
   ========================================================================== */
footer {
  background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 152, 0, 0.1), transparent 70%);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

/* Contact Info */
.contact-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--gray-text);
}

.contact-info svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-info a {
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--primary-color);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.2);
  border-radius: 8px;
  color: var(--light-text);
}

.newsletter-form button {
  background: var(--primary-color);
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icon {
  color: var(--gray-text);
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ==========================================================================
   8. Cart Styles
   ========================================================================== */
.cart {
  display: none;
  position: fixed;
  top: 70px;
  right: 20px;
  background: #111;
  border: 1px solid #444;
  padding: 20px;
  z-index: 1000;
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(255, 152, 0, 0.2);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.cart.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.cart h2 {
  margin-bottom: 10px;
}

.cart ul {
  list-style: none;
  padding: 0;
}

.cart li {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid #444;
}

.cart button {
  background: #ff9800;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cart button:hover {
  background: #ff7600;
}

/* ==========================================================================
   9. Media Queries
   ========================================================================== */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 15px;
  }

  .header-top {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
  }

  .menu-toggle {
    display: block;
    padding: 8px;
    margin-left: -8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background-color: #fff;
    transition: all 0.3s ease;
  }

  .logo {
    justify-self: center;
    text-align: center;
  }

  .logo img {
    width: 40px;
    height: auto;
  }

  .header-icons {
    justify-self: end;
  }

  .header-icons a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.1rem;
    padding: 8px;
  }

  #cart-count {
    font-size: 0.9rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    padding: 80px 25px 25px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
  }

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

  .nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu ul li {
    width: 100%;
    margin: 10px 0;
  }

  .nav-menu ul li a {
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-menu ul li a:hover {
    padding-left: 10px;
    color: var(--primary-color);
  }

  .nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
  }

  .nav-menu ul li a:hover::after {
    width: 100%;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 480px) {
  .cart {
    width: 90%;
    right: 5%;
  }
}
