*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', 'Helvetica Neue', Arial, sans-serif;
}


html, body{
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

.header-container{
    overflow: visible;
}

/* ===== Custom Scrollbar ===== */

/* Works in Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;              /* vertical scrollbar width */
  height: 10px;             /* horizontal scrollbar height */
}

::-webkit-scrollbar-track {
  background: #f3efe9;      /* light winery background */
}

::-webkit-scrollbar-thumb {
  background: #2c1f12;      /* dark wine color */
  border-radius: 10px;
  border: 2px solid #f3efe9;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b1e1e;      /* deep red on hover */
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #2c1f12 #f3efe9;
}

header {
    position: fixed;   /* instead of sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #F9F5F2;
    color: #000;
}

.logo {
    display: block;              /* important */
    width: 60px;                /* set logo width */
    height: 60px;                /* set logo height */
    background-image: url('../image/logo.png');
    background-repeat: no-repeat;
    background-size: contain;    /* keeps proportions */
    background-position: center;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: grey;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffd700;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.enter-icon {
    position: relative;
    font-size: 1em;
    cursor: pointer;
    color: grey;
    padding: 8px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 1s;
}

.enter-icon i:hover{
    color: #3e3e3e;
}









.banner {
  position: relative;
  height: 90vh; /* almost full screen */
  background: url('../image/banner.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center; /* big text at bottom */
  padding-bottom: 50px;
  margin-top: 80px;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
}

.banner-content {
  position: relative;
  text-align: center;
  color: white;
  margin-right: 150px;
}

.small-text {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: white;
}

.big-text {
  font-size: 7rem;
  font-weight: 700;
  color: #ffffff; /* light white */
  text-transform: uppercase;
  transform: translateX(-140px);
}



@media(max-width:768px){
  .big-text { font-size: 3rem; transform: translateX(-40px);}
  .small-text { font-size: 1rem; }
  .banner-content{ margin-right: 40px; }
}

.uppercase{
  text-transform: uppercase;
}











   .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    flex-wrap: wrap;
  }

  .text {
    flex: 1 1 400px;
  }

  .text h2 {
    font-size: 3em;
    color: #2c1f12;
    margin-bottom: 40px;
  }

  .text p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-top: 15px;
  }

  .btn_sec {
    display: inline-block;
    color: gray;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 50px;
    margin-right: 15px;
  }

  .btn_sec:hover {
    background-color: #ffffff;
    color: #2c1f12;
  }

  .btn {
    display: inline-block;
    color: gray;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 50px;
    border: solid 1px gray;
    margin-right: 15px;
  }

  .btn:hover {
    background-color: #ffffff;
    color: #2c1f12;
  }

  .image {
    flex: 1 1 200px;
    text-align: center;
  }

  .image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
  }











   .wine-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f5f0;
  }

  .wine-section h5 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .wine-section h1 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
  }

  /* Large WINE text with image inside */
  .wine-section h1 span {
    font-size: 8rem;
    font-weight: 900;
    background: url('../image/sec3a1.jpg') no-repeat center/cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    letter-spacing: 5px;
  }

  .wine-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-bottom: 50px;
  }

  .wine-left, .wine-right {
    flex: 1 1 250px;
    min-width: 250px;
  }

  .wine-left h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-align: left;
  }

  .wine-left p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    text-align: left;
  }

  .wine-right p {
    font-weight: 500;
    margin: 10px 0;
    text-align: left;
    font-size: 1.2em;
  }

  .wine-bottle {
    flex: 0 0 100px;
    text-align: center;
  }

  .wine-bottle img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .btn_third {
    margin-top: 30px;
    padding: 20px 40px;
    border: 2px solid #2c1f12;
    background-color: transparent;
    color: #2c1f12;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn_third:hover {
    background-color: #2c1f12;
    color: #ffffff;
  }

  


  .contact-section {
  padding: 100px 20px;
  background: #f8f5f0;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  font-size: 2.5em;
  color: #2c1f12;
  margin-bottom: 15px;
}

.subtitle {
  color: #6b4c3b;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.info-item {
  margin-bottom: 25px;
}

.info-item a{
    text-decoration: none;
    color: #555;
}

.info-item h4 {
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #2c1f12;
}

.info-item p {
  color: #555;
  line-height: 1.6;
}

.contact-form {
  flex: 1 1 450px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1em;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2c1f12;
  outline: none;
  box-shadow: 0 0 0 3px rgba(44,31,18,0.1);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  background: #2c1f12;
  color: #ffffff;
  font-weight: 600;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #ffffff;
  color: #2c1f12;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}









/* ===== Scroll Reveal Base ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Left / Right variations */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Banner animation */
.banner-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
















/* ===== Shop Section ===== */
.shop-section {
  margin-top: 50px;
  padding: 100px 20px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h5 {
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin: 15px 0 25px;
  color: #2c1f12;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.filters button {
  padding: 8px 18px;
  border: 1px solid #2c1f12;
  background: transparent;
  color: #2c1f12;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s;
}

.filters button.active,
.filters button:hover {
  background: #2c1f12;
  color: #ffffff;
}

/* Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Card */
.product-card {
  position: relative;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* base label */
.stock-label{
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    color: white;
    z-index: 2;
}

/* available */
.in-stock{
    background: #2ecc71;
}

/* not available */
.out-stock{
    background: #bf1d2c;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
  background: #F9F5F2;
  padding: 30px;
  text-align: center;
}

.product-image img {
  height: 220px;
  object-fit: contain;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  margin-bottom: 10px;
  color: #2c1f12;
}

.product-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.rating {
  color: #c9a869;
  margin-bottom: 15px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #2c1f12;
}

.add-btn {
  padding: 8px 15px;
  border: none;
  background: #2c1f12;
  color: #ffffff;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.add-btn:hover {
  background: #ffffff;
  color: #2c1f12;
  border: solid 1px #2c1f12;
}





.limited-badge {
    padding: 8px 14px;
    background: #7B1E3A; /* deep wine red */
    color: white;
    font-size: 14px;
    border-radius: 20px;
    font-weight: 500;
    animation: pulse 1.5s infinite;
    white-space: nowrap;
}

/* փոքր շարժվող ուշադրություն գրավող էֆեկտ */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 30, 58, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(123, 30, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(123, 30, 58, 0);
    }
}










.advantages-section {
  padding: 100px 20px;
  background: #f8f5f0;
  text-align: center;
}

.advantages-section .section-header h5 {
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.advantages-section .section-header h2 {
  font-size: 2.5rem;
  margin: 15px 0 60px;
  color: #2c1f12;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.adv-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.adv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.adv-card i {
  font-size: 2rem;
  color: #2c1f12;
  margin-bottom: 20px;
}

.adv-card h3 {
  margin-bottom: 15px;
  color: #2c1f12;
}

.adv-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}










.wine-description-section {
  padding: 100px 20px;
  background: #ffffff;
}

.wine-description-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.wine-col {
  padding: 30px;
  border-radius: 12px;
  transition: 0.3s ease;
  padding-top: 20px;
  padding-bottom: 40px;
}

.wine-col h3 {
  font-size: 1.4rem;
  color: #2c1f12;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.wine-type {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a869;
  margin-bottom: 20px;
}

.wine-col p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}







.castle-section {
  padding: 100px 20px;
  background: #f8f5f0;
  text-align: center;
}

.castle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.castle-image {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

.castle-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.castle-image:hover {
  transform: scale(1.03);
}

.castle-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}




.ararat-gallery-section {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.ararat-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
}

/* Horizontal images span 2 columns */
.ararat-img.horizontal {
  grid-column: span 2;
  height: 250px;
}

.ararat-img.vertical {
  height: 400px;
}

.ararat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s ease;
}

.ararat-img:hover img {
  transform: scale(1.05);
}

.ararat-text {
  max-width: 900px;
  margin: 40px auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
}




  @media (max-width: 768px) {

    .banner{
      height: 50vh;
    }

    .content {
      flex-direction: column;
      text-align: center;
    }

    .text {
      margin-bottom: 30px;
    }
    
    .small-text{
      font-size: 1.2rem;
    }

    .wine-section h1 span,
    .big-text
    {
      font-size: 3.5rem;
    }

    .contact-form{
      width: 95%;
    }

    .contact-container{
      align-items: center;
    }
  }







/* Hide hamburger on desktop */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: grey;
}

.club_link{
    display: none;
}

/* Mobile version */
@media (max-width: 768px) {

    header{
      justify-content: space-between;
    }

    .hamburger {
        display: block;
    }
    
    .club_link{
        display: block;
    }

    .passive{
      display: none;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #F9F5F2;
        display: flex;
        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        color: #333;
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: 350px;
    }

    .wine-left h2{
      font-size: 1.5rem;
    }

    .text h2{
      font-size: 1.5rem;
    }

    .advantages-section .section-header h2{
      font-size: 1.5rem;
    }
}





.club-btn{
    background: linear-gradient(135deg, #7a0019, #b3122f);
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* hover effect */
.club-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #8f0020, #d51f3f);
}

/* click effect */
.club-btn:active{
    transform: scale(0.96);
}

/* responsive */
@media (max-width:768px){
    .club-btn{
        font-size:16px;
        padding:10px 22px;
    }
}

.lang-switch{
    width:40px;
    height:40px;
    border-radius:50%;
    overflow:hidden;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #ffffff;
    box-shadow:0 4px 10px rgba(0,0,0,0.25);
    transition:all 0.3s ease;
    margin-right: 10px;
}

.lang-switch img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.lang-switch:hover{
    transform:scale(1.1);
    box-shadow:0 6px 15px rgba(0,0,0,0.35);
}

/* responsive */
@media (max-width:768px){
    .lang-switch{
        width:34px;
        height:34px;
    }
}


.no_bullet_li{
    list-style-type: none;
}


.lang-switch {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    margin-right: 10px;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;       /* right below the main flag */
    left: 0%;       /* start from the center of parent */
    transform: translateX(0%); /* shift back by 50% of its own width */
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    gap: 10px;
    z-index: 1000;
    flex-direction: column;  /* vertical list */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    white-space: nowrap;     /* prevents wrapping */
}

.lang-dropdown img {
    width: 32px;
    height: 25px;
    cursor: pointer;
}

.lang-switch:hover .lang-dropdown {
    display: flex;
}