* {
margin: 0;
padding: 0;
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;
}

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





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





body {
    margin: 0;
}
.impact_hero {
position: relative;
}

.impact_hero img {
width: 100%;
height: 700px;
object-fit: cover;
filter: brightness(55%);
}

.impact_overlay {
position: absolute;
top: 50%;
left: 50%;

transform: translate(-50%, -50%);
text-align: center;
color: white;
}

.impact_overlay h1 {
font-family: ‘Cormorant Garamond’, serif;
font-size: 64px;
font-weight: 400;
margin-bottom: 20px;
}

.impact_overlay p {
font-size: 24px;
letter-spacing: 2px;
}

.impact_block {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
max-width: 1300px;
margin: 0 auto;
padding: 120px 40px;
}

.impact_block.reverse {
background: #f3eee6;
}

.impact_image img {
width: 100%;
height: 550px;
object-fit: cover;
}

.impact_text h2 {
font-family: ‘Cormorant Garamond’, serif;
font-size: 42px;
color: #2f4f3e;
margin-bottom: 25px;
}

.impact_text p {
font-family: ‘Cormorant Garamond’, serif;
font-size: 22px;
line-height: 1.8;
color: rgba(47,79,62,0.75);
}

.impact_quote {
text-align: center;
padding: 160px 40px;
background: #f8f5ef;
}

.impact_quote h2 {
font-family: ‘Cormorant Garamond’, serif;
font-size: 56px;

background: linear-gradient(
    90deg,
    #2f4f3e,
    #8b6f47
);

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

.impact_quote p {
font-family: ‘Cormorant Garamond’, serif;
font-size: 24px;
color: rgba(47,79,62,0.75);
max-width: 700px;
margin: 25px auto 50px;
}

.impact_btn {
display: inline-block;
padding: 16px 40px;
border: 1px solid #2f4f3e;
color: #2f4f3e;
text-decoration: none;
font-family: 'Cormorant Garamond', serif;
letter-spacing: 2px;
transition: 0.4s;
}

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

transform: translateY(-3px);
}

@media (max-width: 800px) {

.impact_hero img {
height: 500px;
}

.impact_overlay {
width: 90%;
}

.impact_overlay h1 {
font-size: 44px;
line-height: 1.2;
}

.impact_overlay p {
font-size: 20px;
}

.impact_block {
grid-template-columns: 1fr;
gap: 40px;
padding: 70px 25px;
}

.impact_image img {
height: 400px;
}

.impact_text {
text-align: center;
}

.impact_text h2 {
font-size: 36px;
}

.impact_text p {
font-size: 20px;
line-height: 1.7;
}

.impact_quote {
padding: 100px 25px;
}

.impact_quote h2 {
font-size: 42px;
line-height: 1.2;
}

.impact_quote p {
font-size: 20px;
}

.impact_btn {
padding: 14px 34px;
font-size: 16px;
}
}
@media (max-width: 500px) {

.impact_hero img {
height: 420px;
}

.impact_overlay {
width: 95%;
}

.impact_overlay h1 {
font-size: 32px;
line-height: 1.3;
}

.impact_overlay p {
font-size: 16px;
letter-spacing: 1px;
}

.impact_block {
padding: 50px 20px;
gap: 30px;
}

.impact_image img {
height: 280px;
object-position: center;
}

.impact_text h2 {
font-size: 30px;
margin-bottom: 15px;
}

.impact_text p {
font-size: 18px;
line-height: 1.6;
}

.impact_quote {
padding: 70px 20px;
}

.impact_quote h2 {
font-size: 34px;
}

.impact_quote p {
font-size: 18px;
margin-bottom: 35px;
}

.impact_btn {
width: 100%;
max-width: 280px;
padding: 14px 20px;
font-size: 15px;
letter-spacing: 1px;
}
}
