/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:'Arial',sans-serif;
  scroll-behavior: smooth;
  background: #fff;
}

.hero-text {
  position: relative;
  z-index: 1;
  background: rgba(76, 175, 80, 0.4); /* թափանցիկ սպիտակ overlay */
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff; /* սպիտակ տեքստ */
  font-weight: 600; /* ավելի հաստ տեքստ */
}

.hero-text h1, .hero-text p {
  text-shadow:
    0 0 5px rgba(255,255,255,0.6),
    0 0 10px rgba(255,255,255,0.5),
    
}
/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #2B7A0B;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.menu a{
font-size:20px;
font-weight:600;
padding:10px 15px;
}
header .logo {
  /* հին տեքստային չափը ջնջել */
  font-size: 0; /* տեքստը ավելի մեծ չի երևա */
}

header .logo-img {
  height: 70px; /* մեծացրինք 50px-ից 70px */
  width: auto;  /* պահպանվում է համաչափությունը */
  display: block; /* ապահովում է, որ margin-ը ճիշտ աշխատի */
}

/* Եթե ուզում ես մի փոքր space տալ nav-ի հետ */
header nav {
  margin-left: 20px; /* լոգոյի և մենյուի միջև դինամիկ տարածություն */
}
header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
header nav ul li a:hover {
  text-decoration: underline;
}

/* Dropdown Menu */
nav ul li.dropdown {
  position: relative;
}
nav ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #2B7A0B;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
  z-index: 1000;
}
nav ul li.dropdown .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
}
nav ul li.dropdown .dropdown-menu li a:hover {
  background: #276747;
}
nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 70px;
  overflow: hidden;
}
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* video-ն լրացնում է hero հատվածը */
  z-index: -1;
}
.hero{
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.hero-video{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit: cover;
}

.sound-btn{
  position:absolute;
  bottom:20px;
  right:20px;
  z-index:10;
  padding:10px 15px;
  border:none;
  border-radius:8px;
  background:rgba(0,0,0,0.6);
  color:white;
  font-size:18px;
  cursor:pointer;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}
.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
}
.btn {
  padding: 12px 25px;
  background: #FF6B35;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}
.btn:hover {
  background: #FF4C1C;
}

/* Products Section */

#products {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}
#products h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2B7A0B;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.product-card{
background:white;
border-radius:15px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.4s;
cursor:pointer;
}

.product-card:hover{
transform:translateY(-12px) scale(1.03);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.product-card img{
width:100%;
height:200px;
object-fit:cover;
transition:0.5s;
}

.product-card:hover img{
transform:scale(1.1);
}
.product-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-10px);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-card h3 {
  margin: 15px 0 10px;
  color: #2B7A0B;
}
.product-card p {
  font-size: 1rem;
  color: #555;
}
.product-link{
text-decoration:none;
color:inherit;
}

/* About Section */
#about {
  padding: 60px 20px;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}

#contact {
  padding: 100px 30px;
  text-align: center;
  background: #b4d49f;
}
#contact h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2B7A0B;
}
#contact p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Container for form + map */
.contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.map iframe{
width:100%;
height:300px;
border:0;
}

.contact-container form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-container input,
.contact-container textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-container textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-container button {
  background: #2B7A0B;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-container button:hover {
  background: #276747;
}

.contact-container .map {
  flex: 1 1 300px;
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Social Links */
.social-links {
  margin-top: 30px;
}
.social-links a img {
  transition: transform 0.3s;
}
.social-links a img:hover {
  transform: scale(1.2);
}
/* Social Links */
.social-links {
  margin-top: 30px;
}
.social-links a.facebook-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color:green; /* Facebook Blue */
  color: white;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 24px;
  border-radius: 50%; /* կլոր տեսք */
  text-decoration: none;
  transition: transform 0.3s;
}
.social-links a.facebook-link:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width:768px){
.contact-container{
flex-direction:column;
align-items:center;
}

.contact-container form{
width:100%;
}

.contact-container .map{
width:100%;
}
}
/* Lightbox Styles */
#lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
#lightbox img.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  font-weight: bold;
}
.icons a{
font-size:30px;
color:green;
text-decoration:none;
}
.hero-text{
animation:fadeUp 1.5s ease;
}


@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(40px);
}

100%{
opacity:1;
transform:translateY(0);
}
}

.menu a{
position:relative;
text-decoration:none;
}

.menu a::after{
content:"";
position:absolute;
width:0;
height:2px;
left:0;
bottom:-5px;
background:#4CAF50;
transition:0.3s;
}

.menu a:hover::after{
width:100%;
}
/* Products Section for products.html */
#products-page {
  padding: 150px 80px;
  text-align: center;
  background: #f9f9f9;
}
#products-page h1 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2B7A0B;
}
#products-page p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.product-card {
  background:white;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:0.4s;
  cursor:pointer;
  padding:20px;
}
.product-card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}
.product-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  transition:0.5s;
}
.product-card:hover img{
  transform:scale(1.1);
}
.product-card h3 {
  margin: 15px 0 10px;
  color: #2B7A0B;
}
.product-card p {
  font-size: 1rem;
  color: #555;
}
.product-link{
  text-decoration:none;
  color:inherit;
}
/* Hero Section */
.hero-apple {
  position: relative;
  height: 60vh;
  background: url('images/apple-hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  text-align: center;
}

/* Hero Text Box as Overlay Table */
.hero-text-box {
  background: rgba(255, 255, 255, 0.85); /* բաց ֆոն */
  padding: 40px 50px;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-text-box h1 {
  font-size: 2.8rem;
  color: #2B7A0B;
  margin-bottom: 15px;
}

.hero-text-box p {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #444;
}

.hero-text-box .btn {
  padding: 14px 30px;
  background: #FF6B35;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.hero-text-box .btn:hover {
  background: #FF4C1C;
}

/* Media Section (Images + Video) */
.hero-media {
  padding: 60px 20px;
  background: #f9f9f9; /* առանձնացված լուսավոր տարածք */
  text-align: center;
}
/* Apple Story Section */
.apple-story {
  padding: 60px 20px; /* վերև-ներք տարածություն */
  display: flex;
  justify-content: center;
  background: #d4edda; /* բաց կանաչ ֆոն */
}

.story-box {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.2); /* թեթև translucent սպիտակ overlay */
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.story-box p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #2B7A0B; /* խիտ կանաչ տեքստ */
  text-align: justify; /* գեղեցիկ կարդացող դասավորություն */
}
.media-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
/* Centered and expressive section heading */
h2.section-title {
  text-align: center;         /* կենտրոնացնել տեքստը */
  font-size: 2.5rem;          /* մեծ, վերնագրային չափ */
  font-weight: 700;            /* հաստ տառեր */
  color: #2B7A0B;             /* խիտ կանաչ կամ ընտրած քո գույնը */
  margin-bottom: 40px;         /* ներքև spacing */
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2); /* թեթև ստվեր */
}
.media-container img, .media-container video {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.media-container img:hover, .media-container video:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text-box {
    padding: 25px 30px;
  }
  .hero-text-box h1 { font-size: 2.2rem; }
  .hero-text-box p { font-size: 1.1rem; }
  .media-container img, .media-container video {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-text-box h1 { font-size: 1.8rem; }
  .hero-text-box p { font-size: 1rem; }
  .hero-text-box .btn { padding: 12px 20px; }
}
.hero-dried-apple {
  position: relative;
  height: 60vh;
  background: url('images/dried-apple-hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px; /* header-ի տեղը ազատելու համար */
  text-align: center;
}
.hero-dried-apple .hero-text {
  background: rgba(76, 175, 80, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
}
.hero-dried-apple .hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero-dried-apple .hero-text p {
  font-size: 1.3rem;
}
.dried-apple-story-text-container {
  max-width: 900px;
  margin: 50px auto;          /* կենտրոնում դնելու համար */
  background-color: #d8f3d8;  /* բաց կանաչ ֆոն */
  padding: 25px 40px;         /* ներսի տարածք տեքստի համար */
  border-radius: 12px;        /* անկյունները հարթացնելու համար */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1.2rem;
  color: #2b7a0b;
  line-height: 1.6;
}
#dried-apple-process .media-grid img,
#dried-apple-process .media-grid video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Process Section */
#dried-apple-process {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
#dried-apple-process h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2B7A0B;
}
#dried-apple-process p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Media Grid */
#dried-apple-process .media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Hero Section for apricot.html */
.hero-apricot {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px; /* header-ի համար ազատ տեղ */
  text-align: center;
  overflow: hidden;
}

.hero-apricot .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-apricot .hero-text {
  background: rgba(76, 175, 80, 0.5); /* թափանցիկ կանաչ ֆոն */
  padding: 25px 40px;
  border-radius: 12px;
  color: #fff;
  max-width: 800px;
  z-index: 1;
}

.hero-apricot .hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.hero-apricot .hero-text p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-shadow: 0 0 3px rgba(0,0,0,0.4);
}

/* Sound button */
.hero-apricot .sound-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  color: white;
  cursor: pointer;
  font-size: 16px;
}

/* Apricot Story Section */
#apricot-story-container {
  background: #d9f0d9;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.apricot-story-text {
  max-width: 900px;
  text-align: center;
  padding: 30px 40px;
  background: rgba(76, 175, 80, 0.3);
  border-radius: 15px;
  color: #2B7A0B;
}

.apricot-story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.apricot-story-text p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Media Section (Images + Video) */
/* Gallery Section */

.gallery-section{
padding:40px 20px;
background:#f0f8f5;
text-align:center;
}

.gallery-title{
font-size:32px;
margin-bottom:25px;
color:#2b7a0b;
}

/* Wrapper */

.gallery-wrapper{
position:relative;
max-width:1100px;
margin:auto;
}

/* Gallery */

.gallery{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
scroll-snap-type:x mandatory;
padding:10px;
}

/* Hide scrollbar */

.gallery::-webkit-scrollbar{
display:none;
}

.gallery{
scrollbar-width:none;
}

/* Images */

.gallery img{
flex:0 0 calc(33.33% - 20px);
max-width:100%;
height:300px;
object-fit:cover;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
cursor:pointer;
scroll-snap-align:center;
transition:transform 0.3s;
}

.gallery img:hover{
transform:scale(1.03);
}

/* Slide Buttons */

.slide-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
background:#4CAF50;
color:white;
border:none;
font-size:22px;
padding:12px 16px;
cursor:pointer;
border-radius:50%;
z-index:1000;
}

.slide-btn.left{
left:10px;
}

.slide-btn.right{
right:10px;
}

/* Mobile */

@media (max-width:768px){

.gallery img{
flex:0 0 100%;
height:220px;
}

}

.slide-btn{
font-size:16px;
padding:8px 10px;
}


.dried-apple-story-text-container {
  max-width: 900px;
  margin: 50px auto;          /* կենտրոնում դնելու համար */
  background-color: #d8f3d8;  /* բաց կանաչ ֆոն */
  padding: 25px 40px;         /* ներսի տարածք տեքստի համար */
  border-radius: 12px;        /* անկյունները հարթացնելու համար */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  font-size: 1.2rem;
  color: #2b7a0b;
  line-height: 1.6;
}
/* Hero Section for dried-apricot.html */
.hero-dried-apricot {
  position: relative;
  height: 60vh;
  background: url('images/dried-apricot-hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px; /* header-ի տեղը ազատելու համար */
  text-align: center;
}
.hero-dried-apricot .hero-text {
  background: rgba(76, 175, 80, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
  color: #fff;
}
.hero-dried-apricot .hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero-dried-apricot .hero-text p {
  font-size: 1.3rem;
}

/* Process Section */
#dried-apricot-process {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
#dried-apricot-process h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2B7A0B;
}
#dried-apricot-process p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}
/* About Section */
#about {
  padding: 100px 30px;
  text-align: center;
  background: #b4d49f;
}
#about h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2B7A0B;
}
#about p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}
#about h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2B7A0B;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-content: center; /* կենտրոնացնում է վերջին շարքը, եթե սյունակներ քիչ են */
  margin: 0 auto;
  max-width: 1000px;
}

.team-member {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.team-member h3 {
  margin-bottom: 5px;
  color: #2B7A0B;
}
.team-member p {
  font-size: 1rem;
  color: #555;
}

/* Responsive - փոքր էկրանների համար */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr; /* 1 սյունակ */
  }
  .team-member img {
    width: 120px;
    height: 120px;
  }
}
.team-member {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.team-member h3 {
  margin-bottom: 5px;
  color: #2B7A0B;
}
.team-member p {
  font-size: 1rem;
  color: #555;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  #about h1 { font-size: 2rem; }
  #about h2 { font-size: 1.5rem; }
  .team-member img { width: 120px; height: 120px; }
}

/* Media Grid */
#dried-apricot-process .media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}
#dried-apricot-process .media-grid img,
#dried-apricot-process .media-grid video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-dried-apricot .hero-text h1 {
    font-size: 2rem;
  }
  .hero-dried-apricot .hero-text p {
    font-size: 1rem;
  }
  #dried-apricot-process .media-grid {
    grid-template-columns: 1fr;
  }
}
/* Contact Section */
#contact {
  padding: 100px 30px;
  text-align: center;
  background: #b4d49f;
}
#contact h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2B7A0B;
}
#contact p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Container for form + map */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-container form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-container input,
.contact-container textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}
.contact-container textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-container button {
  background: #2B7A0B;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.contact-container button:hover {
  background: #276747;
}

.contact-container .map {
  flex: 1 1 300px;
  border-radius: 12px;
  overflow: hidden;
}

/* Social Links */
.social-links {
  margin-top: 30px;
}
.social-links a img {
  transition: transform 0.3s;
}
.social-links a img:hover {
  transform: scale(1.2);
}
/* Social Links */
.social-links {
  margin-top: 30px;
}
.social-links a.facebook-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color:#49965a; /* Facebook Blue */
  color: white;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 24px;
  border-radius: 50%; /* կլոր տեսք */
  text-decoration: none;
  transition: transform 0.3s;
}
.social-links a.facebook-link:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* Lightbox Styles */
#lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
#lightbox img.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  font-weight: bold;
}
.icons a{
font-size:30px;
color:green;
text-decoration:none;
}
/* Footer */
footer {
  background: #2B7A0B;
  color: white;
  padding: 25px 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text p { font-size: 1.2rem; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  header nav ul { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-text p { font-size: 1rem; }
}