/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cinzel', serif;
  color: #f4f4f4;
  background-color: #111;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('copper-distillery.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero .overlay {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  color: #c4ff00; /* Yellow-Green */
  text-transform: uppercase;
}

.hero p {
  font-size: 2.0rem;
  margin: 10px 0 20px;
}

/* Countdown */
/* Countdown Container */
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Each Time Box */
.time-box {
    background: #2a2a2a;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    box-shadow: inset 0 0 15px #c2ff00, 0 0 20px #c2ff00;
    transition: all 0.3s ease;
}

.time-box span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #c2ff00;
}

.time-box small {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-top: 5px;
}

/* Hover Glow */
.time-box:hover {
    box-shadow: inset 0 0 20px #c2ff00, 0 0 30px #c2ff00;
}

/* Responsive */
@media (max-width: 768px) {
    .time-box span {
        font-size: 1.5rem;
    }
    .time-box {
        min-width: 70px;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .time-box span {
        font-size: 1.2rem;
    }
    .time-box {
        min-width: 60px;
        padding: 12px 8px;
    }
}


/* About Section */
.about, .contact {
  padding: 60px 20px;
  text-align: center;
  background: #1a1a1a;
}

.about h2, .contact h2 {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
}

.about.parallax {
    position: relative;
    overflow: hidden;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 0;
}

/* Parallax Background Layer */
.parallax-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 120%;
    background-image: url('https://images.unsplash.com/photo-1663310344299-dbe73d03ecbc?q=80&w=1470&auto=format');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    transform: translateY(0) scal(1.1);
    will-change: transform;
    filter: blur(7px);
}

/* Overlay for readability */
.about-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 800px;
    z-index: 1;
}

.about-overlay h2 {
    font-size: 2.5rem;
    color: #c2ff00;
    margin-bottom: 20px;
}

.about-overlay p {
    font-size: 1.2rem;
    line-height: 1.6;
}



/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  background: #d4af37;
  color: #111;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #b5892e;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .about p {
    font-size: 1rem;
  }
}
