body {
    margin: 0;
    background: #f8f5ef;
    }
.logo {
 width: 70px;

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

.logo-wrapper{
    display: flex;
    flex-direction: column;
    margin-right: 330px;
}
.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;
}
}



.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #fff;
    
}
.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;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #f8f5ef; 
}


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

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

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

.icons {
  display: flex;
  gap: 1rem;
}

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

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

.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;
}

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

/* main section */
.alpaca {
    position: relative;
}
.alpaca_pic {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: brightness(55%);
    opacity: 0.8;
}
.alpaca_text {
   position: absolute;
   top: 30%;
   left: 50%;

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

   animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.alpaca_text h2 {
    font-size: clamp(24px, 5vw, 64px);
    font-family: 'Cormorant Garamond'sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    font-style: italic;
    color: rgba(248, 245, 239, 0.9);
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(47, 79, 62, 0.25);
    cursor: default;
}

.alpaca_text p {
    font-size: 33px;
    font-family: 'Cormorant Garamond'sans-serif;
    letter-spacing: 3px;
    color: rgba(248, 245, 239, 0.9);
    text-transform: uppercase;
    line-height: 0.1;
    text-shadow: 0 0 20px rgba(47, 79, 62, 0.25);
    cursor: default;
}

.btn_collection {
    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;
}


.btn_collection: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;
}

.btn_collection {
    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);
    }
}

.scroll {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(248, 245, 239, 0.7);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0);}
    50% { transform: translate(-50%, -8px);}
}



.item {
    width: 100%;
    height: 420px;
    object-fit: cover;
}


.alpaga_section {
    background: linear-gradient (to bottom,
    #eef2ee 0%,
    #f3eee6 100%
    );
    padding: 20px;
    text-align: center;
}



h3 {
    font-size: 50px;
    letter-spacing: 3px;
    font-family: 'Cormorant Garamond' serif;
    font-weight: 700;
    background: linear-gradient(
        90deg, 
        #2f4f3e,
        #8b6f47
    );
    margin-bottom: 20px;
    margin-top: 10px;

    background-size: 200% auto;

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

    display: inline-block;

    animation: titleAppear 1.2s ease-out,
    gradientMove 6s ease-in-out infinite;

 
}


@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

h3:hover {
    transform: scale(1.03);
    cursor:default;
}

.alpaga_description {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;

    
}

.alpaga_description h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: rgba(47, 79, 62, 0.75);
    font-style: italic;

}
.alpaga_content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
    padding: 80px 40px;
    background: #f3eee6;
    max-width: 1200px;
    margin: auto;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    gap: 25px;
}


.separator img {
    width: 70px;

    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
     }
     50% {
        transform: translateY(-6px) rotate(2deg);
     }
}

.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 40px;
    background: #f3eee6;
    align-items: center;
}
.location_text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.location_map iframe {
    width: 100%;
    height: 350px;
    border: none;
    filter: grayscale(20%);

}
.location_text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.location_text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: rgba(47, 79, 62, 0.7);
    margin: 5px 0;
    letter-spacing: 1px;
}
.location_text p:hover {
    color: #2f4f3e;
    transition: 0.3s ease;
    cursor: default;
}
.email_link {
    display: block;
    margin-top: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(47, 79, 62, 0.7);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.email_link:hover {
    color: #2f4f3e;
    text-decoration: underline;
    text-decoration-color: #8b6f47;
    text-underline-offset: 4px;
    transform: translateY(-2px);
}
.social_icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social_icons img {
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: all 0.3 ease;
}
.social_icons img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.section_divider {
    height: 1px;
    background: rgba(47, 79, 62, 0.15);
    margin: 80px auto;
    width: 60%;

}

.newsletter {
   background: #f3eee6;
   display: grid;
   grid-template-columns: 1fr auto 1fr;
   align-items: center;
   gap: 50px;
   padding: 100px 40px;
}

.newsletter_img {
    width: 350px;
    height: 500px;
    object-fit: cover;
}
.newsletter_content {
    text-align: center;
    padding: 0 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.newsletter_content h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 25px;
    background: linear-gradient(
        90deg,
        #2f4f3e,
        #8b6f47
    );

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

    margin-bottom: 10px;
}
.newsletter_content p {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(47, 79, 62, 0.75);
    font-size: 20px;
    line-height: 1.6;
    max-width: 400px;

}

.newsletter_form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.newsletter_form input {
    width: 320px;
    padding: 14px 10px;
    border: none;
    border-bottom: 1px solid rgba(47, 79, 62, 0.3);
    background: transparent;
    text-align: center;
    outline: none;
    color: #2f4f3e;
    font-size: 20px;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}
.newsletter_form input:focus {
    border-bottom: 1px solid #2f4f3e;
    outline: none;
}

.newsletter_form input::placeholder {
    color: rgba(47, 79, 62, 0.6);
    letter-spacing: 1px;
}

.newsletter_form button {
    margin-top: 10px;
    padding: 14px 34px;
    border: 1px solid #2f4f3e;
    background: transparent;
    color: #2f4f3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}
.newsletter_form button:hover {
    background: #2f4f3e;
    color: #f8f5ef;
    transform: translateY(-2px);
}
.newsletter_content p:last-of-type {
    margin-bottom: 20px;
}



.footer_top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;

}
.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #2f4f3e;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: 0;
    cursor: default;
}
.footer a {
    display: block;
    color: rgba(47, 79, 62, 0.85);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s ease;
}
.footer a:hover {
    color: #2f4f3e;
    text-decoration: underline;
    text-decoration-color: #8b6f47;
    text-underline-offset: 4px;
    transform: translateX(3px);
}
.icons_row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-items: center;
}
.icons_row img {
    width: 55px;
    height: 55px;
    opacity: 0.85;
    transition: 0.3s ease;
}
.icons_row img:hover {
opacity: 1;
transform: translateX(3px);
}


.footer_bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(47, 79, 62, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer_legal {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.footer_legal a {
    color: rgba(47, 79, 62, 0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3 ease;
    font-family: 'Cormorant Garamond', serif;
    
}

.footer_legal a:hover {
    color: #2f4f3e;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer_bottom p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    cursor: default;
}




@media (max-width: 800px) {

    .header {

        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .logo-wrapper {
        margin-right: 0;
        align-items: center;
    }

    .nav_links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
   
    .alpaca_text {
        top: 35%;
        width: 90%;
        padding: 0 10px;
    }
    .alpaca_text p {
        font-size: 22px;
        line-height: 1.2;
    }
    .alpaca_text h2 {
        white-space: normal;
        line-height: 1.3;
    }
    .alpaca_pic {
        height: 500px;
        object-position: center;
    }
    .item {
       
        object-fit: cover;
        object-position: center 20%;
       
    }
    .alpaga_content {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }
   
    .location {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
   
    .footer_top {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
       
    }
    .footer_bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .icons {
        gap: 10px;
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .icons i {
        font-size: 22px;
        line-height: 1;
    }
    .social_icons {
        gap: 12px;
        justify-content: center;
    }
    .social_icons img {
        width: 26px;
        height: 26px;
    }
    .alpaga_content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .location {
        grid-template-columns: 1fr;
    }
    .newsletter {
        grid-template-columns: 1fr;
    }
    .newsletter_img {
         object-fit: cover;
        object-position: center 20%;
    }
    .newsletter {
        display: flex;
        flex-direction: column;
        justify-self: center
    }
    .newsletter_content {
        margin: 0 auto;
       display: flex;
       flex-direction: column;
       align-items: center;
       text-align: center;
    }
    .icons_row {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    .icons_row img {
        width: 45px;
        height: 45px;
        object-fit: contain;
    }
    .icons_wrapper {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
     
       
    }

}

@media (max-width: 500px) {

.header {
padding: 15px;
gap: 15px;
}

.nav_links {
gap: 10px;
}

.alpaca_pic {
height: 380px;
}

.alpaga_description img {
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
text-align: center;
}
.alpaga_section h3 {
    font-size: 20px;
}
.alpaga_description h4 {
    font-size: 18px;
}
.item {
    width: 100%;
    max-width: 320px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.alpaga_description {
    text-align: center;
    padding: 0;
}

.alpaca_text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;

}
.alpaca_text h2 {
font-size: 18px;
letter-spacing: 1px;
}

.alpaca_text p {
font-size: 14px;
letter-spacing: 1px;
}

.alpaga_content {
grid-template-columns: 1 fr;
padding: 30px 15px;
gap: 20px;
justify-items: center;
}

.location {
padding: 40px 15px;
}

.newsletter {
padding: 40px 15px;
}

.newsletter_img {
width: 100%;
height: 300px;
}

.newsletter_form input {
width: 100%;
}

.newsletter_content h5 {
    font-size: 20px;
}
.newsletter_content p {
    font-size: 18px;
}
.newsletter_content input {
    font-size: 17px;
    margin-top: -80px;
}
.newsletter_content button {
    font-size: 17px;
}
.footer_top {
grid-template-columns: 1fr; /* колонки друг под другом */
gap: 25px;
padding: 30px 20px;
}

.footer_col {
text-align: center;
}

.icons_wrapper {
grid-column: 1 / -1;
gap: 12px;
}

.icons_row {
gap: 12px;
}

.icons_row img {
width: 38px;
height: 38px;
}

.footer_bottom {
padding: 15px;
gap: 10px;
}

.footer_legal {
flex-direction: column;
gap: 8px;
align-items: center;
}
.btn_collection {
    margin-top: -10px;
    padding: 10px 22px;
    font-size: 14px;
    letter-spacing: 1px;
}
.separator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    width: 100%;
}
.scroll {
    display: none;
}
.location_map iframe {
    height: 220px;
}
}