/* ===== BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body, .body {
    background: url('pic22339.PNG'), linear-gradient(to bottom, red, yellow);
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

/* ===== NAVBAR ===== */
.up-position-div {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 55px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-color: rgba(50, 117, 65, 0.3);
    border-style: solid;
    background: rgba(36, 118, 85, 0.3);
    border-radius: 5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.ZAFA {
    color: wheat;
    font-family: arial;
    font-size: 1.1rem;
    font-weight: bolder;
    text-shadow: 1px 1px 13px rgb(217, 248, 241);
    white-space: nowrap;
}
.button-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background: transparent;
    border-radius: 5px;
    padding: 5px 8px;
}
.button:hover { color: wheat; }
.Registration {
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    border-style: solid;
    border-color: rgb(17, 140, 83);
    background-color: rgb(17, 140, 83);
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 10px;
    white-space: nowrap;
}
.Registration:hover { opacity: 0.7; transition: 0.3s; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.Main-big-Text {
    margin-top: 100px;
    font-family: Arial;
    font-size: 2.8rem;
    font-weight: bolder;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(90deg, #f5f5f5, #ffd6a5, #f0b96e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
.Main-big-Text-span { font-size: 2.5rem; }
.Main-small-text {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 15px auto;
    line-height: 1.6;
    padding: 0 20px;
}
.icon-and-get-start {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}
.Get-Started {
    color: #f5f5f5;
    background-color: rgb(17, 140, 83);
    border: 1px solid #a8a6a6;
    padding: 8px 20px;
    border-radius: 15px;
    font-family: arial;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}
.Get-Started:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* ===== PHOTOS ===== */
.img-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 15px;
    margin-top: 10px;
}
.photo1, .photo2, .photo3 {
    height: 230px;
    width: 220px;
    border-radius: 15px;
    object-fit: cover;
}

/* ===== SOCIAL ===== */
.a { text-decoration: none; }
.whatsapp, .insta, .facebook {
    height: 50px;
    width: 50px;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 2px;
    margin-top: 15px;
    margin-left: 4px;
    border-radius: 25px;
}
.whatsapp:hover { box-shadow: 1px 1px 13px rgb(8, 210, 8); cursor: pointer; background-color: rgb(6,152,6); }
.insta:hover { box-shadow: 1px 1px 20px rgb(255,6,93); cursor: pointer; background-color: rgb(173,19,73); }
.facebook:hover { box-shadow: 1px 1px 20px rgb(4,68,245); cursor: pointer; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .button-div {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        background: rgba(20, 80, 50, 0.97);
        backdrop-filter: blur(10px);
        padding: 15px;
        gap: 10px;
        align-items: flex-start;
        z-index: 99;
    }
    .button-div.open { display: flex; }
    .button { font-size: 1.1rem; padding: 8px 10px; }
    .Registration { margin-left: 0; margin-top: 5px; width: 100%; text-align: center; }

    .Main-big-Text { font-size: 1.7rem; margin-top: 80px; }
    .Main-big-Text-span { font-size: 1.5rem; }
    .Main-small-text { font-size: 0.95rem; }

    .photo1, .photo2, .photo3 {
        height: 180px;
        width: 45%;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .Main-big-Text { font-size: 1.35rem; }
    .Main-big-Text-span { font-size: 1.2rem; }
    .photo1, .photo2, .photo3 { width: 90%; height: 200px; }
}
