/* =========================
   FONT SETUP
========================= */

@font-face {
  font-family: 'Ovo';
  src: url('Ovo 400.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* =========================
   GLOBAL STYLES
========================= */

body {
  margin: 0;
  font-family: 'Ovo', serif;
  background-color: #f8f6f2;
  color: #2e2e2e;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Ovo', serif;
  letter-spacing: 0.5px;
  margin-top: 0;
}

p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
}

section {
  padding: 80px 10%;
}


/* =========================
   HEADER / NAV
========================= */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
  background: #ffffff;
}

.logo {
  height: 80px;
  width: auto;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 500;
  font-size: 16px;
}

nav a:hover {
  opacity: 0.7;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  text-align: center;
  padding: 140px 20px;
}

.hero-branding {
  max-width: 500px;
  width: 90%;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 28px;
  background: #2e2e2e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #444;
}

.hero-logo {
  height: 120px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}
/* =========================
   PORTFOLIO
========================= */

.portfolio {
  text-align: center;
}

.portfolio h1,
.portfolio h2 {
  margin-bottom: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
}

.gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =========================
   ABOUT PAGE
========================= */

.about {
  max-width: 900px;
  margin: auto;
}

.about h1 {
  text-align: center;
  margin-bottom: 40px;
}

.intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 25px;
  color: #444;
}

.about-section {
  margin-top: 40px;
}

.about-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.about-section p {
  line-height: 1.7;
}

/* =========================
   CONTACT PAGE
========================= */

.contact {
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.contact-intro {
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

input, textarea, select {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

button {
  padding: 14px;
  background: #2e2e2e;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #444;
}

.contact-info {
  margin-top: 30px;
  font-size: 15px;
}

/* Contact Form Layout */

.name-fields {
  display: flex;
  gap: 15px;
}

.name-fields input {
  width: 100%;
}

label {
  text-align: left;
  margin-top: 20px;
  font-weight: 500;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 10px;
  text-align: left;
}

.options-grid label {
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}

textarea {
  min-height: 120px;
}

/* =========================
   FAQ PAGE
========================= */

.faq {
  max-width: 900px;
  margin: auto;
}

.faq h1 {
  text-align: center;
  margin-bottom: 50px;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.faq-item p {
  line-height: 1.7;
}

.faq-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
  font-size: 20px;
  font-weight: 600;
}

.faq ul {
  padding-left: 20px;
  margin-top: 10px;
}

.faq li {
  margin-bottom: 5px;
}
/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  margin-top: 60px;
  font-size: 14px;
  color: #777;
}

/* =========================
   SHOP PAGE
========================= */

.shop {
  max-width: 800px;
  margin: auto;
  padding: 80px 10%;
  text-align: center;
}

.shop h1 {
  margin-bottom: 10px;
}

.coming-soon {
  font-size: 28px;        /* increased from 18px */
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 40px;
}

.shop-content {
  text-align: left;
}

.shop-content h3 {
  margin-top: 40px;
  font-size: 20px;
}

.shop-content p {
  margin-top: 10px;
  line-height: 1.8;
  color: #555;
}

.thank-you {
  margin-top: 40px;
  font-style: italic;
  text-align: center;
}

.highlight-final {
  color: #c0392b;
  font-weight: bold;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    height: 100px;
  }

  nav a {
    margin: 0 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .gallery img {
    height: 250px;
  }

}

.home::before {
  content: "";
  position: fixed;
  inset: 0;

  background: url("../images/home-bg.jpeg") no-repeat center center / cover;

  filter: blur(5px);
  transform: scale(1.05);

  z-index: -2;
}

.home::after {
  content: "";
  position: fixed;
  inset: 0;

  background: rgba(255, 255, 255, 0.6);

  z-index: -1;
}
/* Make homepage sections transparent so background shows */
.home main,
.home section,
.home .hero,
.home .content,
.home .container {
  background: transparent !important;
}