* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding-top: 0;
    }


.alpaga_hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.alpaga_hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    z-index: 0;
}

.header {
    position: fixed;  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: transparent;
    transition: background 0.3s ease;
}

.header.scrolled {
    background: #f8f5ef;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav_links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_links a {
    font-family: 'Cormorant Garamond', sans-serif;
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.icons {
    display: flex;
    gap: 20px;
    margin-left: 60px;
}


.logo {
 width: 70px;

 height: 70px;
 border-radius: 50%;
 object-fit: cover;   
 margin-right:10px;
}


.tagline {
    font-family:'Cormorant Garamond'sans-serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: #7a7a7a;
    margin-top: -5px;
    text-transform: uppercase;

}
.item {
    position: relative;
    color: #2f4f3e;
    text-decoration: none;
    transition: all 0.3 ease;
    white-space: nowrap;
}
.item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;

    background: linear-gradient(
        90deg,
        #2f4f3e,
        #8b6f47
    );
    transition: width 0.3s ease;
}
.item:hover::after {
    width: 100%;
}

.item:hover {
    cursor: pointer;
    background: linear-gradient(
        90deg,
        #2f4f3e,
        #8b6f47,
        #2f4f3e
    );
    background-size: 200% 100%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shine 2s linear infinite;
    transform: scale(1.05);

}
@keyframes shine {
from {
    background-position: 0% 0;
}
to { background-position: 200% 0;
}
}




.brand {
    display: flex;
    align-items: center;
    gap: 8px;

}


.brand_name {
    cursor: pointer;
    letter-spacing: 4px;
    font-family: 'Cormorant Garamond'sans-serif;
    font-weight: 500;
    font-size: 42px;;
    background: linear-gradient(
        90deg,
        #2f4f3e,
        #8b6f47
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: all 0.3s ease;
   
}
.brand_name:hover {
    transform: scale(1.1);
    animation: shine 2s linear infinite;
}


.nav_links .item {
  text-decoration: none;
  color: #f8f5ef;
}

.header.scrolled .item,
.header.scrolled .icons i {
     font-family: 'Cormorant Garamond'sans-serif;
     font-size: 19px;
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}


.icons a {
  color: inherit;
  font-size: 1.2rem;
}





.icons i {
    color:#2f4f3e;
    font-size: 28px;
    transition: 0.3s;
}
.icons i:hover {
    color: #6b8e23;
    transform: scale(1.15);
}











.alpaga_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    padding: 0 20px;
    cursor: default;
    
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.alpaga_overlay h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 82px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(248, 245, 239, 0.9);
    margin-bottom: 15px;
    cursor: default;
}
.hero_subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    color: rgba(248, 245, 239, 0.95);
    margin-bottom: 20px;
    cursor: default;

}
.hero_text {
    max-width: 700px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.6;
    color: rgba(248, 245, 239, 0.9);
    margin-bottom: 40px;
    cursor: default;
}
.hero_btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Cormorant Garamond'sans-serif;
    color: rgba(248, 245, 239, 0.98);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    font-weight: 500;
    border: 1px solid rgba(248, 245, 239, 0.6);
    background: transparent;
    text-decoration: none;
    transition: all 0.4s ease;
}


.hero_btn:hover {
    background: linear-gradient(
        90deg,
        #2f4f3e,
        #8b6f47
    );
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    letter-spacing: 3px;
}

.hero_btn {
    opacity: 0;
    animation: btnFade 1.4 ease forwards;
    animation-delay: 0.6s;
}

@keyframes btnFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.why_alpaga {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:80px;
    align-items: center;
    padding: 120px 80px;
    background: #f3eee6;
}
.why_alpaga_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.why_alpaga_text h2 {
    font-family: 'Cormorant Garamond'sans-serif;
    font-size: 38px;
    font-weight: 500;
    color: #2f4f3e;
    margin-bottom: 40px;
    cursor: default;
}
.why_alpaga_text li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 22px;
    font-family: 'Cormorant Garamond'sans-serif;
    font-size: 28px;
    color: rgba(47, 79, 62, 0.8);
    list-style: none;
    cursor: default;
}
.why_alpaga_text li::before {

    content: "";
    width: 16px;
    height: 1px;
    background: #8b6f47;
    position: absolute;
    left: 0;
    top: 18px;
    }

.why_alpaga_img {
    overflow: hidden;
}
.why_alpaga_img img {
    transition: transform 6s ease;
}
.why_alpaga_img:hover img {
    transform: scale(1.05);
}
.why_alpaga_text h2::after {
    content: "";
    display: block;
    width: 560px;
    height: 1px;
    background: #8b6f47;
    margin-top: 20px;
}
.why_alpaga_text li {
    transition: all 0.3s ease;
}
.why_alpaga_text li:hover {
    transform: translateX(6px);
    color: #2f4f3e;
}

.alpaga_products {
    background: #f8f5ef;
    padding: 120px 60px;
    text-align: center;
}
.alpaga_products h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 55px;
    font-style: italic;
    color: rgba(47,79,62,0.7);
    text-align: center;
    margin-bottom: 30px;
    margin-top: -70px;
    cursor: default;

}
.alpaga_products h3::after {
    content: "";
    display: block;
    width: 700px;
    height: 1px;
    background: #8b6f47;
    margin: 18px auto 0;
}


.products_grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    margin-top: 60px;
}
.product_card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product_card:hover img {
    transform: scale(1.03);
}
.product_card h4 {
    margin-top: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: #2f4f3e;
    cursor: default;
}
.product_card p {
    margin-top: 0px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(47,79,62,0.7);
    cursor: default;
}
.btn_collection_all {
display: inline-block;

padding: 16px 40px;

font-family: 'Cormorant Garamond', serif;
font-size: 18px;
font-weight: 500;
letter-spacing: 2px;

text-transform: uppercase;
text-decoration: none;

color: #2f4f3e;
border: 1px solid #2f4f3e;
background: transparent;

transition: all 0.4s ease;

margin-top: 50px;
}

.btn_collection_all:hover {
background: #2f4f3e;
color: #f8f5ef;

transform: translateY(-3px);
letter-spacing: 3px;

box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn_wrapper {
text-align: center;
margin-top: 10px;
}
@media (max-width: 800px) {


.alpaga_overlay h1 {
font-size: 52px;
letter-spacing: 2px;
}
.hero_subtitle {
font-size: 24px;
}
.hero_text {
font-size: 20px;
max-width: 90%;
}
.hero_btn {
font-size: 16px;
padding: 12px 28px;
}

/* Why Alpaga */
.why_alpaga {
grid-template-columns: 1fr;
gap: 40px;
padding: 80px 50px;
}
.why_alpaga_img img {
height: 450px;
}
.why_alpaga_text h2 {
font-size: 32px;
}
.why_alpaga_text h2::after {
width: 100%;
}
.why_alpaga_text li {
font-size: 24px;
}

/* Products */
.alpaga_products {
padding: 80px 40px;
}
.alpaga_products h3 {
font-size: 40px;
margin-top: -30px;
}
.alpaga_products h3::after {
width: 90%;
}
.products_grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
.product_card img {
height: 300px;
object-fit: contain;
}
.product_card h4 {
font-size: 22px;

}
.product_card p {
font-size: 18px;
}
}


@media (max-width: 500px) {

/* Hero */
.alpaga_overlay h1 {
font-size: 36px;
letter-spacing: 1px;
margin-bottom: 10px;
}
.hero_subtitle {
font-size: 18px;
margin-bottom: 12px;
}
.hero_text {
font-size: 16px;
line-height: 1.5;
max-width: 100%;
margin-bottom: 20px;
}
.hero_btn {
font-size: 14px;
padding: 10px 22px;
letter-spacing: 1.5px;
margin-top: 14px;
}

/* Why Alpaga */
.why_alpaga {
grid-template-columns: 1fr;
gap: 28px;
padding: 60px 24px;
}
.why_alpaga_img img {
height: 260px;
}
.why_alpaga_text h2 {
font-size: 24px;
margin-bottom: 24px;
}
.why_alpaga_text h2::after {
width: 100%;
margin-top: 12px;
}
.why_alpaga_text li {
font-size: 19px;
margin-bottom: 16px;
padding-left: 22px;
}
.why_alpaga_text li::before {
top: 13px;
}

/* Products */
.alpaga_products {
padding: 60px 20px;
}
.alpaga_products h3 {
font-size: 28px;
margin-top: 0;
margin-bottom: 16px;
}
.alpaga_products h3::after {
width: 100%;
}
.products_grid {
grid-template-columns: 1fr;
gap: 20px;
margin-top: 36px;
}
.product_card img {
height: 240px;
}
.product_card h4 {
font-size: 20px;
}
.product_card p {
font-size: 16px;
}
.btn_collection_all {
font-size: 15px;
padding: 12px 26px;
letter-spacing: 1.5px;
margin-top: 36px;
}
}