/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #f0f0f0;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: #ffffff;
  color: #111;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 3.5rem;
  color: #f8f8f8;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

h2 {
  font-size: 2.25rem;
  color: #222;
}

p {
  font-size: 1.125rem;
  color: #444;
}

/* Layout containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-bottom: 2px solid #e3e3e3;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #008080;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  background-color: #111;
  background-image: linear-gradient(to bottom right, #222, #111);
  text-align: center;
  color: white;
  padding: 2rem;
}

/* Buttons */
.button {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #008080;
  border-radius: 8px;
  background-color: transparent;
  color: #008080;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #008080;
  color: white;
}

/* Cards */
.card {
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  height: auto;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  font-size: 1.75rem;
  color: #008080;
  margin-bottom: 1rem;
}

.card-content p {
  font-size: 1rem;
  color: #333;
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: #111;
  color: #ccc;
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  color: #fff;
}

/* Sticky navbar effect */
.sticky-scroll {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Debug */
body::before {
  content: "✅ Test CSS Loaded";
  position: fixed;
  top: 0;
  right: 0;
  background: #008080;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  z-index: 9999;
  font-family: monospace;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #111;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #008080;
}

.admin-link {
  font-weight: 600;
  border-left: 1px solid #ddd;
  padding-left: 1.5rem;
  margin-left: 1.5rem;
  color: #c0392b;
}

.admin-link:hover {
  color: #e74c3c;
}
footer {
  background-color: #111;
  color: #ccc;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 90vh;
  text-align: center;
  background-image: linear-gradient(to bottom right, #111, #222);
  color: white;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .button {
  background-color: #008080;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero .button:hover {
  background-color: #006666;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #111;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #008080;
}
form input, form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

form label {
  font-weight: 600;
  color: #111;
}

form .button {
  margin-top: 0.5rem;
}
/* Ensure anchor tags aren't bright blue */
a {
  color: #008080;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
  color: #006666;
}

/* Polished button style */
.button {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #008080;
  border-radius: 8px;
  background-color: transparent;
  color: #008080;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #008080;
  color: #fff;
}

/* Form elements */
form input, form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

form label {
  font-weight: 600;
  display: block;
  margin-top: 1rem;
}
.collection-section {
  padding: 3rem 1.5rem;
  text-align: center;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1400px;
}

.collection-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.collection-header p {
  font-family: 'Open Sans', sans-serif;
  color: #ccc;
  margin-bottom: 2rem;
}

.bag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.bag-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.bag-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.bag-image img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bag-info {
  padding: 1rem;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.bag-info h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.bag-info .price {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #ffcc00;
  font-size: 1.1rem;
}
/* 🌟 Centered 3D Logo */
.moncada-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.moncada-logo {
  width: 120px;   /* ⬅️ 250% larger */
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  padding: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: pulse-glow 3s infinite ease-in-out;
}

/* 💡 Soft Pulse Glow */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 32px rgba(255, 204, 0, 0.4);
    transform: scale(1.05);
  }
}

/* 🖋️ NAVBAR CONTAINER */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  background: #fff;
  z-index: 999;
}

/* 🌐 NAV LINKS */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0.5rem 0 1rem;
}

.main-nav a {
  font-family: 'Open Sans', sans-serif;
  color: #111; /* ✅ Ensures visibility on white */
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffcc00; /* 🟡 Moncada Gold */
}
