/* Box sizing reset for consistent layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #222;
  padding-top: 70px; /* offset for fixed header */
}

/* Header styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: #2c3e50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 0.6rem 2rem;
}

/* Navbar */
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffca28;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: default;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffca28;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-content button {
  background: linear-gradient(45deg, #ffca28, #ffc107);
  border: none;
  padding: 15px 35px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 202, 40, 0.6);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content button:hover {
  background: linear-gradient(45deg, #ffc107, #ffb300);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.8);
}

/* Container Sections */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

/* About Section */
.about p {
  font-size: 1.05rem;
}

/* Contact */
.contact address {
  font-style: normal;
  margin-top: 10px;
  color: #444;
  line-height: 1.8;
}

.contact a {
  color: #00bcd4;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-branding h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #00bcd4;
  text-transform: uppercase;
}

.footer-branding p {
  font-style: italic;
  color: #ccc;
}

.footer-contact .icon {
  margin-right: 8px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #2c3e50;
    width: 100%;
    padding: 1rem 2rem;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-branding,
  .footer-contact {
    width: 48%;
  }
}
