/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Assistant', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #121212;
  background-color: #ffffff;
  min-height: 100vh;
}

/* ===== UTILITY CLASSES ===== */
.page-width {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 4rem;
  }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background-color: #f3f3f3;
  padding: 1rem 0;
  text-align: center;
}

.announcement-bar__message {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
}

/* ===== HEADER ===== */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.header__logo img {
  height: 6rem;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: #121212;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #334fb4;
}

.nav-link.disabled {
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 2.5rem;
  height: 0.3rem;
  background-color: #121212;
  margin: 0.3rem 0;
  transition: 0.3s;
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  height: 60vh;
  min-height: 40rem;
  overflow: hidden;
}

.hero-banner__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-banner__title {
  color: #ffffff;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  background-color: #f9f9f9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

.about-content h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  color: #121212;
}

.about-content p {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ===== VINEYARD SECTION ===== */
.vineyard-section {
  padding: 6rem 0;
}

.vineyard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vineyard-content h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 4rem 0;
}

.page-title {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #121212;
}

/* ===== STORY CONTENT ===== */
.story-content {
  max-width: 80rem;
  margin: 0 auto;
}

.story-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.story-text p {
  margin-bottom: 2rem;
}

.story-image {
  margin: 2rem 2rem 2rem 0;
  text-align: left;
  float: left;
  max-width: 320px;
}

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.story-image--box img {
  width: 75%;
  max-width: 400px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COMPANY INFO ===== */
.company-info {
  max-width: 80rem;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.info-item {
  background-color: #f9f9f9;
  padding: 2.5rem;
  border-radius: 0.8rem;
  border-left: 4px solid #334fb4;
}

.info-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #334fb4;
}

.info-item p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}

.history {
  background-color: #f9f9f9;
  padding: 3rem;
  border-radius: 0.8rem;
}

.history h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #121212;
}

.history ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.history li {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  padding-left: 2rem;
}

.history li:before {
  content: "•";
  color: #334fb4;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.history li:last-child {
  border-bottom: none;
}

.vineyard-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.vineyard-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.vineyard-image img {
  width: 100%;
  height: auto;
  border-radius: 0.8rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  text-decoration: none;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #334fb4;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2a3f8f;
  transform: translateY(-2px);
}

.btn-disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-disabled:hover {
  background-color: #ccc;
  transform: none;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #121212;
  color: #ffffff;
  padding: 4rem 0;
  margin-top: 6rem;
}

.footer__content {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #334fb4;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #2a3f8f;
}

.social-link .icon {
  width: 2rem;
  height: 2rem;
}

/* ===== MOBILE MENU STYLES ===== */
.nav-menu--open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  gap: 1.5rem;
}

.mobile-menu-btn--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn--active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn--active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 990px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-banner__title {
    font-size: 3.6rem;
  }
  
  .about-content h2,
  .vineyard-content h2 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 750px) {
  .about-grid,
  .vineyard-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vineyard-buttons {
    flex-direction: column;
  }
  
  .hero-banner {
    height: 50vh;
    min-height: 30rem;
  }
  
  .hero-banner__title {
    font-size: 2.8rem;
  }
  
  .about-section,
  .vineyard-section {
    padding: 4rem 0;
  }
  
  .page-width {
    padding: 0 1.5rem;
  }

  .story-image {
    float: none;
    display: block;
    margin: 0 auto 2rem auto;
    max-width: 90vw;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-banner__title {
    font-size: 2.4rem;
  }
  
  .about-content h2,
  .vineyard-content h2 {
    font-size: 2.4rem;
  }
  
  .about-content p {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
} 