/* ==================== COLOR THEME ==================== */
:root {
  --bg: #0b1e4a;         /* dark blue background */
  --text: #f5f5f5;       /* light text */
  --primary: #0b1e4a;    /* dark maroon */
  --secondary: #0b1e4a;  /* dark blue for header/nav */
  --accent: #d4af37;     /* gold highlights */
}

/* ==================== GLOBAL ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4 { font-family: 'Times New Roman', Times, serif}

p {
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ==================== BANNER ==================== */
.banner {
  width: 100%;
  background: var(--accent);
  color: var(--secondary);
  text-align: center;
  padding: 10px;
  position: fixed;
  top: -50px;
  z-index: 2000;
  font-weight: bold;
  font-size: 1rem;
  transition: top 0.5s ease;
}
.banner.show { top: 0; }
.banner button {
  margin-left: 10px;
  cursor: pointer;
  border: none;
  background: none;
  font-weight: bold;
  color: var(--secondary);
  font-size: 1rem;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--secondary);
  color: var(--accent);
  z-index: 1000;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: top 0.3s;
}
header h1 { 
  color: var(--accent); 
  font-weight: 700; /* bold header */
}
nav a { 
  color: var(--accent); 
  text-decoration: none; 
  transition: color 0.3s; 
  margin: 0 20px;  /* spaced menu items */
  font-weight: 600; /* bold menu text */
}

/* ==================== HAMBURGER ==================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--accent);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: var(--secondary);
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1500;
  }
  nav.open { right: 0; }
  .hamburger { display: flex; }
  nav a { font-size: 1.2rem; margin: 15px 0; }
}

/* ==================== HERO ==================== */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(75,0,15,0.7), rgba(11,30,74,0.7)),
        url("./assets/website_background.png");
  background-size: cover;
  background-position: center;
  color: var(--accent);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 260px; /* adjust size */
  max-width: 80%;
  margin-bottom: 25px;
}

/* ==================== COLLECTION ==================== */
.collection { padding: 80px 40px; text-align: center; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 25px; }
.card {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  border: 1px solid rgba(212,175,55,0.2);
  transition: box-shadow 0.5s;
}
.card img {
  width: 100%;
  aspect-ratio: 16/9;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s, box-shadow 0.5s;
}
.card:hover img { transform: scale(1.1); }
.card:hover { box-shadow: 0 0 20px 5px var(--accent); }
.card-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--accent);
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* ==================== LOCATIONS ==================== */
.locations { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); padding: 40px; gap: 20px; }
iframe { width: 100%; height: 250px; border: none; }

/* ==================== SOCIAL ==================== */
#social a { color: var(--accent); text-decoration: none; transition: color 0.3s; font-weight: 600; font-size: 1.5rem; }
#social a:hover { color: var(--primary); }

/* ==================== ABOUT ==================== */
.about {
  padding: 80px 40px;
  background: var(--bg);
  color: var(--text);
}

.about-container {
  max-width: 800px;
  margin: 0 auto;        /* centers the whole section */
  text-align: center;    /* centers text */
}

.about-text h2 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  max-width: 400px;;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,0.2);
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    max-height: 300px;
  }
}

/* ==================== FOOTER ==================== */
footer { 
  background: linear-gradient(to right, #0b1e4a, #081633); 
  color: var(--accent); 
  text-align: center; 
  padding: 20px; 
  font-weight: 700; /* bold footer text */
}

.footer-designer {
color: whitesmoke;
font-size: small;
}