:root {
    --main-black: #1A1A1A;
    --main-white: #F5E8D8;
    --black-text-hover-color: #696969;
    --white-text-hover-color: #fffefd;

}

a{
    text-decoration: none;
    color: inherit;
}

.black-animated-link {
    transition: color 0.2s, transform 0.2s;
}

.black-animated-link:hover, .black-animated-link:focus {
    color: var(--black-text-hover-color);
    transform: scale(1.07);
}

.white-animated-link {
    transition: color 0.2s, transform 0.2s;
}

.white-animated-link:hover, .white-animated-link:focus {
    color: var(--white-text-hover-color);
    transform: scale(1.07);
}

/* General styles */
body, html {
    margin: 0;
    padding: 0;
    background: var(--main-black);
    font-family: 'Base4', Arial, sans-serif;
    font-size: 15px;
    color: var(--main-white);
    min-height: 100vh;
}
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--main-black);
    overflow: hidden;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 1% 4%;
    height: 8vh;
    border-bottom: 1px var(--main-white)solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--main-black);
}
.navbar-logo {
    width: auto;
    height: 100%;
}
.navbar-links {
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-link {
    text-align: center;
    color: var(--main-white);
    font-size: 1.5rem;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: 400;
    line-height: 31.2px;
    cursor: pointer;
}
.navbar-shop {
    padding: 8px 21px;
    background: var(--main-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 25px;
}
.navbar-shop-text {
    color: var(--main-black);
    font-size: 24px;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: 400;
    line-height: 31.2px;
}
.navbar-shop-icon {
    width: 26px;
    height: 28px;
    background: var(--main-black);
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3%;
}
.hero-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-main-image {
    width: 30%;
    height: 30%;
}
.hero-title-image {
    width: 40%;
    height: 10%;
}
.hero-tagline {
    color: var(--main-white);
    font-size: 1.25rem;
    font-family: 'Base4', Arial, sans-serif;
    font-weight: 400;
    line-height: 51.2px;
    text-align: center;
}

/* About Section */
.about-section {
    width: 100%;
    height: 80vh;
    padding: 2% 10%;
    background: var(--main-white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 76px;
}
.about-content {
    flex: 1 1 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 65px;
}
.section-title {

    font-size: 3rem;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: bold;
    line-height: 67.84px;
    letter-spacing: 2.56px;
    text-align: center;
}

.black-text{
        color: var(--main-black);
}

.white-text{
        color: var(--main-white);
}

.about-description {
    color: var(--main-black);
    font-size: 24px;
    font-family: 'Base4', Arial, sans-serif;
    font-weight: 400;
    line-height: 38.4px;
    text-align: center;
}
.about-image-container {
    width: 425px;
    height: 399px;
    display: flex;
    align-items: center;
}
.about-image {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: cover;
}

/* Services Section */
.services-section {
    width: 100%;
    height: 70vh;
    padding: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5%;
}

.services-cards {
    width: 100%;
    height: 60%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.service-title{
    font-size: 2rem;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: bold;
    text-align: center; 
    letter-spacing: 0.25rem;
}

.service-card {
    width: auto;
    height: 100%;
    background: var(--main-white);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1%;
    padding:1 15px 4px;
}

.service-image-container {
    width: 192px;
    height: 169px;
    position: relative;
}
.service-image {
    width: 192px;
    height: 169px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Products Section */
.products-section {
    width: 100%;
    height: fit-content;
    padding: 50px 0;
    background: var(--main-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.products-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 82px;
    height: 505px;
}
.product-image {
    width: 331px;
    height: 340px;
    border-radius: 10px;
    border: 3px var(--main-white) solid;
    object-fit: cover;
}
.product-image.tall {
    height: 506px;
}

/* Contact Section */
.contact-section {
    width: 100%;
    height: fit-content;
    padding: 61px 108px;
    background: var(--main-black);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 33px;
}
.contact-info {
    flex: 1 1 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-description {
    color: var(--main-white);
    font-size: 24px;
    font-family: 'Base4', Arial, sans-serif;
    font-weight: 400;
    line-height: 36px;
    text-align: center;
}
.contact-form {
    flex: 1 1 0;
    padding: 51px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
}
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group.message {
    height: 218px;
    padding-top: 30px;
    padding-bottom: 14px;
    gap: 10px;
}
.form-label {
    color: var(--main-white);
    font-size: 32px;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: 400;
    line-height: 48px;
}
.form-input {
    background: var(--main-white);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    outline: 1px var(--main-white) solid;
    outline-offset: -1px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    min-height: 52px;
}
.form-placeholder {
    color: #828282;
    font-size: 20px;
    font-family: 'Base4', Arial, sans-serif;
    font-weight: 400;
    line-height: 30px;
}
.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: #C1272D;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.form-submit-text {
    color: var(--main-white);
    font-size: 32px;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: 400;
    line-height: 48px;
}

/* Footer */
.footer {
    width: 100%;
    height: auto;
    background: var(--main-white);
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footer-logo {
    width: auto;
    height: 4vh;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
}
.footer-link {
    color: var(--main-black);
    font-size: 20px;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}
.footer-contacts {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-contact {
    color: var(--main-black);
    font-size: 20px;
    font-family: 'Bender', Arial, sans-serif;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}

/* Socials */
.socials {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}
.social-icon {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}
.icon-placeholder {
    width: 60px;
    height: 100%;
    background: #ccc;
    border-radius: 50%;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}
