/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
}

/* COLORS */
:root {
    --logo-color:#FE7300;
    --primary-color: #ff7b00;
    --secondary-color: #b34700;
    --accent-color: #ffb347;
    --background-color: #fffaf3;
    --text-color: #2b2b2b;
    --text-warning: #ff3b3b;
    --text-success: #2ecc71;
    --border-color: #e6d5c3;
    --card-background: #ffffff;
    --card-shadow: rgba(255, 123, 0, 0.2);
    --button-text: #fff;
    --button-cancel: #ff4d4d;
    --button-active: #ffa41b;
    --button-hover: #e56700;
    --button-height-large: 60px;
    --button-height-medium: 40px;
    --button-height-small: 25px;
}

/* HERO SECTION */
.about-hero {
   
    background: linear-gradient(0deg, #ffcfa1, #FFA13D);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 20px 120px;
    border-radius: 0 0 80px 80px;
    text-align: center;
}

.about-hero p {
    width: 50%;
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
    
}

/* ABOUT SECTION */
.about-weare {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
   
}
.about-weare h1{
    margin-left:10px;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-container-card {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.about-container-card-image {
    width: 30%;
    display: flex;
    justify-content: center;
}

.about-container-card-image img {
    width: auto;
    height: 350px;
    border-radius: 40px;
   
}

.about-container-card-box {
    width: 60%;
}

.about-container-card-box-des {
    display: flex;
    align-items: start;
    font-size: larger;
    padding-bottom: 10px;
}

.about-container-card-box-des span {
    font-size: 30px;
    color: var(--logo-color);
    margin-right: 5px;
}

.about-container-box {
    width: 80%;
    display: flex;
    justify-content: space-between;
    font-size: larger;
    padding: 20px 0 100px;
}

.about-container-box-section {
    width: 45%;
    display: flex;
    justify-content: center;
}

/* FORM */
.form-container {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-container input {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e6d5c3;
    font-size: 1rem;
}

.form-container button {
    background: #ff7b00;
    color: white;
    font-weight: bold;
    padding: 14px;
    border-radius: 10px;
    border: none;
    transition: 0.3s;
}

.form-container button:hover {
    background-color: var(--button-active);
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* 📱 MAX 992px (Tablets / Small Laptops) */
@media (max-width: 992px) {
    h1 { font-size: 40px; }
    h2 { font-size: 35px; }

    .about-hero p {
        width: 70%;
        font-size: 18px;
    }

    .about-container-card {
        width: 90%;
    }
}

/* 📱 MAX 768px (Tablets & Large Phones) */
@media (max-width: 768px) {

    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .about-hero {
        padding:100px 20px 100px;
    }

    .about-hero p {
        width: 90%;
        font-size: 17px;
    }

    .about-container-card {
        flex-direction: column;
        text-align: center;
    }

    .about-container-card-image {
        width: 100%;
        margin-bottom: 15px;
    }

    .about-container-card-image img {
        height: 150px;
    }

    .about-container-card-box {
        width: 100%;
    }

    .about-container-box {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 50px;
    }

    .about-container-box-section {
        width: 100%;
    }
    .card-reverce{
      flex-direction: column-reverse;
    }
    .about-container img{
    width:80%;
    height: auto;
   }
}

/* 📱 MAX 500px (Phones) */
@media (max-width: 600px) {

    h1 { font-size: 20px; }
    h2 { font-size: 18px; }
    h3 { font-size: 16px; }

    .about-hero {
       
        border-radius: 0 0 50px 50px;
    }

    .about-hero p {
        font-size: 16px;
        width: 100%;
    }

    .about-container-card-image img {
        height: 120px;
    }

    .form-container input,
    .form-container button {
        font-size: 0.9rem;
        padding: 12px;
    }
    .card-reverce{
      flex-direction: column-reverse;
    }

   .about-container img{
    width:100%;
    height: auto;
   }
}

