/* =====================================================
   GERDO AMIRAN
   MASTER STYLE SHEET
   Version 1.0
====================================================== */

/* ===========================
   ROOT COLORS
=========================== */

:root{

--primary:#1B4332;
--primary-dark:#163828;
--primary-light:#2D6A4F;

--gold:#C9A227;

--walnut:#6F4E37;

--cream:#F7F4EC;

--white:#ffffff;

--text:#222222;

--text-light:#666666;

--border:#E8E4DA;

--shadow:0 12px 35px rgba(0,0,0,.10);

--radius:18px;

--transition:.35s ease;

}

/* ===========================
   RESET
=========================== */

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

background:var(--cream);

color:var(--text);

font-family:tahoma;

line-height:1.8;

overflow-x:hidden;

}

/* ===========================
   CONTAINER
=========================== */

.container{

width:92%;

max-width:1400px;

margin:auto;

}

/* ===========================
   LINKS
=========================== */

a{

text-decoration:none;

color:inherit;

transition:var(--transition);

}

/* ===========================
   IMAGES
=========================== */

img{

width:100%;

display:block;

}

/* ===========================
   BUTTON
=========================== */

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 34px;

background:var(--gold);

color:#222;

font-weight:bold;

border-radius:50px;

transition:var(--transition);

box-shadow:var(--shadow);

}

.btn:hover{

transform:translateY(-4px);

}

/* ===========================
   SECTION
=========================== */

section{

padding:80px 0;

}

/*======================================
            HEADER
=======================================*/

header{

position:sticky;

top:0;

z-index:999;

background:linear-gradient(
180deg,
#163828 0%,
#1B4332 100%
);

box-shadow:0 8px 25px rgba(0,0,0,.18);

}

.header-container{

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo{

display:flex;

align-items:center;

gap:12px;

}

.logo img{

width:58px;

height:58px;

border-radius:50%;

}

.logo-text h1{

font-size:28px;

color:white;

font-weight:900;

letter-spacing:.5px;

}

.logo-text span{

display:block;

color:#C9A227;

font-size:13px;

margin-top:4px;

}

nav ul{

display:flex;

list-style:none;

gap:28px;

}

nav a{

color:white;

font-size:15px;

font-weight:bold;

position:relative;

padding-bottom:8px;

}

nav a::after{

content:"";

position:absolute;

right:0;

bottom:0;

width:0;

height:2px;

background:#C9A227;

transition:.3s;

}

nav a:hover::after{

width:100%;

}

.header-buttons{

display:flex;

gap:12px;

}

.call-btn{

background:#C9A227;

color:#222;

padding:11px 24px;

border-radius:50px;

font-weight:bold;

box-shadow:0 8px 20px rgba(0,0,0,.18);

}

.call-btn:hover{

transform:translateY(-3px);

}

.whatsapp-btn{

background:#1FAF5A;

color:white;

padding:11px 22px;

border-radius:50px;

font-weight:bold;

}

.whatsapp-btn:hover{

transform:translateY(-3px);

}
/*======================================
            HERO SECTION
=======================================*/

.hero{

padding:90px 0;

background:linear-gradient(135deg,#1B4332,#2D6A4F);

overflow:hidden;

}

.hero-container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero-text h2{

font-size:54px;

color:#fff;

line-height:1.4;

margin-bottom:25px;

font-weight:900;

}

.hero-text p{

font-size:20px;

color:#F7F4EC;

line-height:2;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.hero-buy{

background:#C9A227;

padding:16px 34px;

border-radius:60px;

font-size:18px;

font-weight:bold;

color:#222;

}

.hero-buy:hover{

transform:translateY(-5px);

}

.hero-learn{

background:#ffffff22;

backdrop-filter:blur(8px);

padding:16px 34px;

border-radius:60px;

font-size:18px;

font-weight:bold;

color:#fff;

border:1px solid rgba(255,255,255,.3);

}

.hero-learn:hover{

background:#ffffff33;

}

.hero-image{

display:flex;

justify-content:center;

align-items:center;

}

.hero-image img{

max-width:520px;

filter:drop-shadow(0 30px 40px rgba(0,0,0,.25));

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}

50%{transform:translateY(-15px);}

100%{transform:translateY(0);}

   }

/*======================================
          FEATURES
======================================*/

.features{

padding:70px 0;

background:#ffffff;

}

.features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.feature-card{

background:#fff;

padding:35px 25px;

border-radius:18px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

border:1px solid #ECECEC;

}

.feature-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.feature-icon{

font-size:55px;

margin-bottom:20px;

}

.feature-title{

font-size:22px;

font-weight:800;

margin-bottom:12px;

color:#1B4332;

}

.feature-text{

font-size:15px;

line-height:2;

color:#666;

}

/*======================================
        PRODUCTS SECTION
======================================*/

.products{

padding:90px 0;

background:#F6F5F1;

}

.section-title{

text-align:center;

font-size:40px;

font-weight:900;

color:#1B4332;

margin-bottom:15px;

}

.section-subtitle{

text-align:center;

font-size:18px;

color:#666;

margin-bottom:50px;

}

.products-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.product-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.35s;

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.product-card img{

width:100%;

height:250px;

object-fit:cover;

}

.product-content{

padding:22px;

}

.product-title{

font-size:22px;

font-weight:800;

margin-bottom:10px;

color:#1B4332;

}

.product-text{

font-size:15px;

line-height:1.9;

color:#666;

margin-bottom:20px;

}

.product-btn{

display:inline-block;

background:#1B4332;

color:#fff;

padding:12px 28px;

border-radius:50px;

font-weight:bold;

}

.product-btn:hover{

background:#C9A227;

color:#222;

   }

/*======================================
          WHY AMIRAN
======================================*/

.why{

padding:90px 0;

background:#ffffff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.why-card{

background:#F8F8F5;

padding:35px;

border-radius:22px;

border:1px solid #ECECEC;

transition:.35s;

}

.why-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.why-icon{

font-size:50px;

margin-bottom:20px;

}

.why-title{

font-size:23px;

font-weight:800;

color:#1B4332;

margin-bottom:15px;

}

.why-text{

font-size:16px;

line-height:2;

color:#666;

}

/*======================================
            ABOUT AMIRAN
======================================*/

.about{

padding:100px 0;

background:#F6F5F1;

}

.about-container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;

border-radius:25px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.about-title{

font-size:42px;

font-weight:900;

color:#1B4332;

margin-bottom:25px;

}

.about-text{

font-size:17px;

line-height:2.3;

color:#555;

margin-bottom:20px;

}

.about-list{

margin-top:30px;

}

.about-list li{

list-style:none;

margin-bottom:18px;

font-size:17px;

font-weight:700;

color:#1B4332;

}

.about-btn{

display:inline-block;

margin-top:35px;

background:#1B4332;

color:#fff;

padding:16px 38px;

border-radius:50px;

font-size:17px;

font-weight:bold;

transition:.35s;

}

.about-btn:hover{

background:#C9A227;

color:#222;

}
/*======================================
        CUSTOMER REVIEWS
======================================*/

.reviews{

padding:100px 0;

background:#ffffff;

}

.reviews-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:#F8F8F5;

padding:35px;

border-radius:22px;

border:1px solid #E7E7E7;

box-shadow:0 12px 25px rgba(0,0,0,.08);

transition:.35s;

}

.review-card:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.review-stars{

font-size:22px;

margin-bottom:18px;

color:#D4A017;

}

.review-name{

font-size:20px;

font-weight:800;

color:#1B4332;

margin-bottom:15px;

}

.review-text{

font-size:16px;

line-height:2;

color:#666;

}

/*======================================
            BLOG
======================================*/

.blog{
padding:100px 0;
background:#F6F5F1;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.blog-card{
background:#fff;
border-radius:22px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.blog-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.16);
}

.blog-card img{
width:100%;
height:220px;
object-fit:cover;
}

.blog-content{
padding:25px;
}

.blog-title{
font-size:22px;
font-weight:800;
color:#1B4332;
margin-bottom:15px;
}

.blog-text{
font-size:15px;
line-height:2;
color:#666;
margin-bottom:20px;
}

.blog-link{
color:#1B4332;
font-weight:bold;
text-decoration:none;
}

/*======================================
              FOOTER
======================================*/

.footer{

background:#1B4332;

color:#fff;

padding:70px 0 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:40px;

}

.footer-title{

font-size:22px;

font-weight:800;

margin-bottom:20px;

}

.footer-text{

line-height:2.2;

color:#D9E7DD;

font-size:15px;

}

.footer-links{

list-style:none;

padding:0;

margin:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#D9E7DD;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#C9A227;

}

.footer-bottom{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.15);

text-align:center;

font-size:14px;

color:#BFD4C5;

   }

/* Mobile Responsive */

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

.container{
    width:95%;
    max-width:1200px;
    margin:auto;
}

@media (max-width:768px){

    header{
        padding:12px 15px;
    }

    nav{
        display:flex;
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .hero{
        padding:40px 20px;
        text-align:center;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
        line-height:1.8;
    }

    .products{
        display:grid;
        grid-template-columns:1fr;
        gap:20px;
    }

    .product-card{
        width:100%;
    }

    footer{
        text-align:center;
        padding:25px 15px;
    }

}
/* ===== Gerdo Amiran Brand Colors ===== */

:root{
  --primary:#2E7D32;
  --primary-dark:#1B5E20;
  --secondary:#8D6E63;
  --accent:#C9A227;
  --light:#F8F8F8;
  --text:#333333;
}

body{
    background:var(--light);
    color:var(--text);
    font-family:Tahoma,Vazirmatn,sans-serif;
}

header{
    background:#ffffff;
    border-bottom:1px solid #eeeeee;
}

.hero{
    background:linear-gradient(135deg,#2E7D32,#1B5E20);
    color:#fff;
}

.hero h1{
    color:#fff;
    font-weight:700;
}

.hero p{
    color:#F1F1F1;
}

.hero .btn{
    background:var(--accent);
    color:#fff;
    border-radius:10px;
    padding:12px 26px;
    font-weight:bold;
    transition:.3s;
}

.hero .btn:hover{
    background:#b78f18;
}

.feature-card{
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-title{
    color:var(--primary-dark);
    font-weight:bold;
}
