/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {

  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body.menu-open {
  overflow: hidden;
}
/* Navbar Container */
.navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Styling */
.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation List */
.nav-list {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Navigation Links */
.nav-list li a {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Glossy shine effect */
.nav-list li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.nav-list li a:hover::before {
  left: 100%;
}

/* Bottom border effect on hover */
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #A21A5C 0%, #764ba2 100%);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 80%;
}

/* Hover effect */
.nav-list li a:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(5px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  transform: scale(1.05);
}

.hamburger {
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu Animation */
.menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet and Mobile Styles */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .nav-list.active {
    max-height: 400px;
    opacity: 1;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-list li a {
    display: block;
    width: 100%;
    padding: 1rem;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }

  .logo img {
    height: 40px;
  }

  .nav-list li a {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
}
/* Homepage Sections */
.homepage-sections {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 1rem;
}

/* Cards */
.card {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.card:hover::before {
  background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.card-trapezoid-top {
  clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
}

.card-trapezoid-bottom {
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0% 100%);
}

.card-regular {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.card-imatter {
  background: url('images/imatter-background.jpeg') center/cover;
}
.card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.card {
  position: relative;
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* keep overlay above image */
.card-overlay {
  position: relative;
  z-index: 2;
}

/* Overlay */
.card-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  color: white;
}

.card h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.card:hover h1 {
  transform: translateY(-10px) scale(1.05);
  text-shadow: 4px 6px 12px rgba(0, 0, 0, 0.5);
}

.card p {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0.95;
  transition: all 0.5s ease 0.1s;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: #A21A5C;
  color: #000000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .card {
    height: auto;
    min-height: 400px;
    clip-path: none !important;
    border-radius: 16px;
  }

  .card-overlay {
    padding: 40px 20px;
  }

  .card h1 {
    font-size: 1.8rem;
  }

  .card p {
    font-size: 1rem;
    padding: 10px 12px;
    margin-bottom: 15px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    margin-top: 10px;
    border-radius: 30px;
  }
}

/* Footer */
.footer {
  background-color: #1e1e2f;
  color: #fff;
  padding: 3rem 2rem 1rem 2rem;
  font-family: sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 130px;
  min-width: 150px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #A21A5C;
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777777;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #777777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #A21A5C;
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
  color: #777777;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #A21A5C;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  color: #777777;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-section {
    width: 100%;
    max-width: 420px;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .footer-section p,
  .footer-section ul {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
  }

  .footer-bottom {
    margin-top: 1rem;
    padding-top: 0.8rem;
    font-size: 0.85rem;
  }
}
/* COOKIE BANNER */
.sm-cookie {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 520px;

  background: #fff0f5;
  border: 1px solid #ff4da6;
  color: #222;

  padding: 16px;
  border-radius: 10px;

  z-index: 9999;
  display: none;

  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.sm-cookie-text p {
  font-size: 13px;
  margin-top: 4px;
  color: #444;
}

/* BUTTONS */
.sm-cookie-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.sm-btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  border: none;
}

/* pink primary */
.sm-accept {
  background: #ff4da6;
  color: #fff;
}

/* reject */
.sm-reject {
  background: #333;
  color: #fff;
}

/* customize */
.sm-customize {
  border: 1px solid #ff4da6;
  color: #ff4da6;
  background: transparent;
}

/* SETTINGS */
.sm-cookie-settings {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff0f5;
  border: 1px solid #ff4da6;
  padding: 16px;
  border-radius: 10px;
  display: none;
  z-index: 10000;
}

.sm-cookie-settings label {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

/* MOBILE */
@media (max-width: 600px) {
  .sm-cookie-actions {
    flex-direction: column;
  }

  .sm-btn {
    width: 100%;
  }

  .sm-cookie-settings {
    width: calc(100% - 20px);
    bottom: 10px;
  }
}