/* ========================= */
/* Reset */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================= */
/* Body */
/* ========================= */
body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========================= */
/* Navigation */
/* ========================= */
header {
  border-bottom: 1px solid #ddd;
  position: relative;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 60px; /* fixed navbar height */
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

nav ul li {
  margin-right: 25px;
}

nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #0072c6;
  transition: color 0.3s ease;
}

nav ul li a.active {
  color: red;
}

nav ul li a:hover {
  color: #005999;
}

/* ========================= */
/* Hamburger Menu (Mobile) */
/* ========================= */
.menu-toggle {
  display: none; /* only show on mobile */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%); /* vertically center */
  width: 35px;
  height: 30px;
  z-index: 1001; /* stays above menu */
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s ease; /* smoother animation */
}

/* When active -> turns into X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0; /* hide middle line */
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 60px; /* exactly below navbar line */
    left: 0;
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul li {
    margin: 12px 0;
    text-align: center;
  }
}

/* ========================= */
/* Hero Section */
/* ========================= */
.hero {
  margin: 10px 0 20px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -20px;
}

/* Cuul.Co Logos */
.logo-img {
  margin-top: 30px;
  width: 600px;
  max-width: 680px; /* bigger on desktop */
  margin-bottom: 50px;
  border: none; /* remove border */
}

/* Polar bear */
.hero-left img {
  max-width: 260px;
  border: none; /* removed */
}

/* Tagline (Cool Smoke Logos Blu.jpg) */
.tagline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.tagline img {
  max-width: 400px; /* bigger */
  height: auto;
  display: block;
  margin-top: 180px; /* pushed down */
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-right img {
  max-width: 320px;
}

.hero h1 {
  font-size: 26px;
  margin: 15px 0 5px;
  text-align: left;
}

.hero h2 {
  font-size: 18px;
  color: #444;
  text-align: left;
}

.hero p {
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}

/* ========================= */
/* Content Section */
/* ========================= */
.content {
  margin: 30px 0;
}

.content h3 {
  font-size: 18px;
  color: #b30000;
  margin-bottom: 20px;
  font-weight: bold;
}

.content p {
  margin-bottom: 18px;
  font-size: 15px;
}

blockquote {
  font-style: italic;
  margin: 25px 0;
  padding-left: 15px;
  border-left: 4px solid #ccc;
  color: #444;
}

/* ========================= */
/* Footer */
/* ========================= */
footer {
  text-align: center;
  font-size: 13px;
  padding: 15px 0;
  color: #b30000;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

/* ========================= */
/*   Media Queries           */
/* ========================= */

/* Medium screens (<= 992px) */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr auto 1fr;
    text-align: center;
  }

  .logo-img {
    width: 360px;
    max-width: 560px; /* bigger for medium */
    margin: 0 auto 10px;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .hero-left img {
    max-width: 220px;
  }

  .hero-right img {
    max-width: 240px;
  }

  .tagline img {
    max-width: 250px;
    margin-top: 150px;
  }

  .hero h1,
  .hero h2,
  .hero p {
    text-align: center;
  }
}

/* Small screens (<= 768px) */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .logo-img {
    margin-top: 30px;
    max-width: 200px;
  }

  .hero-left img,
  .hero-right img {
    width: 100%;
    max-width: none; /* remove cap */
    height: auto;
    border: none;
    margin: 10px 0;
  }

  .tagline img {
    width: 100%;
    max-width: 320px;
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero p {
    font-size: 14px;
  }

  .content h3 {
    font-size: 16px;
  }

  .content p {
    font-size: 14px;
  }
}
