:root {
    --primary-color: #1B1B1B;
    --secondary-color: #464646;
    --accent-color: #C0A062;
    --bg-color: #F8F3E9;
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Header */
.header {
    padding: 0px 0 0px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-container {
    display: flex;
    gap: 39px;
    align-items: center;
    color: #616161;
    order: 2;
    flex: 1;
    justify-content: end;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: #616161;
    font-family: 'Switzer', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.signup-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.lang-selector img {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.logo {
    width: auto;
    height: 120px;
    display: block;
    order: 1;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
    order: 3;
    position: absolute;
    right:60px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #301B0D;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 1196px) {
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 45;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-container {
        display: none;
        position: fixed;
        top: 0;
        left: auto;
        right: -100%;
        transform: none;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        flex: none;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-container.active {
        display: flex;
        right: 0;
    }
}

@media(max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    
     .header-actions {
        margin-top: 30px;
        flex-direction: column;
        gap: 8px;
    }


}


/* Hero */
.hero {
    width:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.hero h1{
    color: #301B0D;
text-align: center;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #301B0D;
font-family: Switzer;
font-size: 79.92px;
font-style: normal;
font-weight: 700;

line-height: 82px; /* 102.603% */
margin-bottom: 30px;
}
.form-container{
    display: flex;
    
    justify-content: center;

}
.form{
    width: 594px;
height: 794px;
    border-radius: 7.01px 0 0 7.01px;
background: #FFF;
    padding: 90px 47px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.img-container{
    height: 794px;
}
.img-container img{
    width: 100%;
    height: 100%;
}
.name{
    display: flex;
    gap: 32px;
}
.name input{
    width: 234px;
}
.image-container{
    height: 594px;
}


.form input {
    border-radius: 6px;
border: 1px solid var(--Background-C6, rgba(27, 27, 27, 0.15));
background: var(--Background-C10, #FFF);

/* Components / Inputs Shadow 1 */
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
color: rgba(0, 0, 0, 0.50);
font-family: Switzer;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px; /* 137.5% */
letter-spacing: 0.25px;
padding: 16px;
}
.send-btn{
 display: flex;
padding: 12px 24px;
justify-content: center;
align-items: center;
gap: 8px;
align-self: stretch;   
border-radius: 6px;
background: #301B0D;

/* Components / Button Shadow 1 */
box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 2px 0 rgba(0, 0, 0, 0.10);

}
.topic{
   display: flex;
height: 120px;
padding: 16px;
align-items: flex-start;
 border-radius: 6px;
border: 1px solid var(--Background-C6, rgba(27, 27, 27, 0.15));
background: var(--Background-C10, #FFF);
gap: 12px;
align-self: stretch;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
color: rgba(0, 0, 0, 0.50);
font-family: Switzer;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 22px; /* 137.5% */
letter-spacing: 0.25px;
}
.send-btn span{
 color: var(--Background-C10, #FFF);
font-family: Switzer;
font-size: 15px;
font-style: normal;
font-weight: 600;
line-height: 22px; /* 146.667% */   
}
.para{
    display: flex;
    flex-direction: column;

    color: rgba(0, 0, 0, 0.50);
font-family: Switzer;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 200% */
}
.form-div{
    height: 80px;
    display: flex;
    align-items: flex-end;
}
.form h1{
    color: #301B0D;
font-family: Switzer;
font-size: 40px;
font-style: normal;
font-weight: 600;
line-height: 56px; /* 140% */
text-align: flex-end;
}
@media (max-width:1196px){
    .hero{
        padding: 0 40px;
    }
    .form-container{
        flex-direction: column;
        width: 100%;
    }
    .hero h1{
        font-size: 50px;
    }
    .form{
        width: 100%;
        padding: 40px;
    }
     .name{
        gap: 24px; /* Reduce gap for mobile */
    }
    
    .name input{
        width: 100%; /* Make name inputs full width */
    }
    .img-container{
        display: none;
    }
}
@media (max-width:768px){
    .hero{
        padding: 0 20px;
    }
    .hero h1{
        font-size: 25px;
    }
    .form-container{
        flex-direction: column;
        width: 100%;
    }
    
    .form{
        width: 100%;
        padding: 40px;
    }
     .name{
        gap: 16px; /* Reduce gap for mobile */
    }
    .form h1{
    color: #301B0D;
font-family: Switzer;
font-size: 30px;
font-style: normal;
font-weight: 600;
line-height: 56px; /* 140% */
white-space: nowrap;
}
    
    .name input{
        width: 100%; /* Make name inputs full width */
    }
    .img-container{
        display: none;
    }
}


@media (max-width:768px){
    .section-header h2{
        font-size: 25px;
        font-weight: 500;
    }
}
/* Background Variations */
.bg-white {
    background-color: white;
}
/* Partner */
.container{
        padding: 0 30px;
    }
.partner-section {
    padding: 80px 0;
}

.partner-banner {
    height: 396px;
    background: #DAC099;
    /* Approximation to the bronze/goldbg */
    border-radius: 7.1px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.partner-content {
    max-width: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-content h2 {
    color: #301B0D;

    font-family: Switzer;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.partner-content p {
    color: rgba(0, 0, 0, 0.50);

    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 187.5% */
}

.partner-btn {
    padding: 18px 32px;
    background: #2D2318;
    color: white;
    width: 270px;
    height: 70px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    color: #FFF;

    font-family: Switzer;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.partner-image img {
    width: 100%;
}
@media (max-width: 768px) {
    
    .partner-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        height: auto;
        min-height: auto;
    }

    .partner-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .partner-content h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .partner-content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .partner-btn {
        width: 200px;
        height: 50px;
        font-size: 18px;
        padding: 12px 24px;
        margin: 0 auto;
        display: block;
    }

    .partner-image {
        width: 80%;
        max-width: 200px;
        margin: 0 auto;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* tablet-specific styles */
  .partner-section {
    padding: 40px 0;
}
  .partner-banner {
    flex-direction: row;
    padding: 40px 32px;
    height: auto;
    min-height: 320px;
  }

  .partner-content {
    max-width: 55%;
    margin-bottom: 0;
  }

  .partner-content h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .partner-content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .partner-btn {
    width: 220px;
    height: 56px;
    font-size: 20px;
    padding: 14px 28px;
    margin-top: 20px;
  }

  .partner-image {
    width: 40%;
    max-width: 220px;
    margin: 0;
  }
}
/* Footer */
.footer {
    background: #F8F3EB;
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #301B0D;
    font-family: Switzer;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #3F3F3F;
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 240%;
    /* 38.4px */
}

.footer-col ul li a:hover {
    color: #2D2318;
}

.newsletter-input {
    display: flex;
    margin-top: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    gap: 10px;
    height: 50px;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    border: 1px solid #DAC099;
    border-radius: 10.526px;
    background: #F8F3EB;
    padding: 0 16px;
}

.email-icon {
    color: rgba(0, 0, 0, 0.50);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-right: 8px;
}

.newsletter-input input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    color: rgba(0, 0, 0, 0.50);
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.newsletter-input input::placeholder {
    color: rgba(0, 0, 0, 0.50);
    font-family: Switzer;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.newsletter-input button {
    background: #2D2318;
    color: white;
    padding: 12px 24px;
    width: 146px;
    
    border-radius: 10.526px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.newsletter-input button:hover {
    background: #3D3328;
}

.footer-divider {
    max-width: 1440px;
    margin: 60px auto 0;
    padding: 0 80px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 80px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-selectors {
    display: flex;
    gap: 16px;
    border-radius: 6px;

}

.footer-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border: 1px solid rgba(218, 192, 153, 0.3);
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.50);
    cursor: pointer;
    font-family: Switzer;
    border: 1px solid rgba(218, 192, 153, 0.34);

/* Layout/Border Shadow 1 */
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
}

.footer-selector img {
    width: 24px;
    height: 18px;
    object-fit: contain;
}
.footer-selector .country{
    color: var(--Brand-C---Brand-2, #1B1B1B);
font-family: Switzer;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 22px; /* 169.231% */
letter-spacing: 0.25px;
}

.footer-selector strong {
    color: #301B0D;
    font-weight: 600;
}
.footer-selector .language{
   color: rgba(0, 0, 0, 0.50);
font-family: Switzer;
font-size: 13px;
font-style: normal;
font-weight: 500;
line-height: 22px; /* 169.231% */
letter-spacing: 0.25px;
}

.copyright {
    font-family: Switzer;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.50);
}

@media (max-width: 868px) {
     .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-input {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        height: 50px;
    }

    .newsletter-input .input-wrapper {
        flex: 1;
        width: auto;
    }

    .newsletter-input button {
        width: 146px;
    }

    .footer-divider {
        padding: 0 16px;
        margin-top: 40px;
    }

    .footer-bottom {
        padding: 24px 16px 40px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-selectors {
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .see-all {
        margin: 0;
    }
}
@media (max-width: 480px) {
    .newsletter-input {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    .newsletter-input .input-wrapper {
        width: 100%;
    }

    .newsletter-input button {
        width: 100%;
    }
}

/* arrow section */


.arrow {
    text-align: center;
    stroke-width: 1px;
    stroke: rgba(218, 192, 153, 0.34);
    width: 100%;
    padding: 40px 40px;
}

.arrow svg {
    width: 72%;
    max-width: 1183px;
    height: auto;
    
}

@media (min-width: 769px) and (max-width: 1024px) {
    .arrow {
        padding: 0 20px;
    }

    .arrow svg {
        width: 72%;
    }
}
@media (max-width: 768px) {
    .arrow {
        padding: 0 16px;
    }
    .arrow svg {
        width: 90%;
    }
}





