@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    overflow-x:hidden;
    color:#4b4b4b;
    background:
    radial-gradient(circle at top left,#fff5dc 0%,transparent 35%),
    radial-gradient(circle at bottom right,#fff1d0 0%,transparent 35%),
    linear-gradient(135deg,#fdfbf7,#f8efe5,#fff8f0);
}

/* Background Glow */

body::before{
    content:"";
    position:fixed;
    width:450px;
    height:450px;
    top:-180px;
    left:-180px;
    border-radius:50%;
    background:#D4A35F30;
    filter:blur(70px);
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:420px;
    height:420px;
    bottom:-180px;
    right:-180px;
    border-radius:50%;
    background:#E7BE7930;
    filter:blur(80px);
    z-index:-1;
}

/* ===========================
        NAVBAR
=========================== */

.navbar{
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    text-decoration:none;
    font-size:42px;
    font-weight:800;
    letter-spacing:2px;
    color:#B8860B;
    transition:.35s;
}

.logo:hover{
    color:#fff;
    transform:scale(1.03);
}

/* Home Button */

.home-btn{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
    padding:13px 26px;
    border-radius:50px;
    background:linear-gradient(135deg,#D4A35F,#B8860B);
    font-weight:600;
    box-shadow:0 12px 30px rgba(212,163,95,.35);
    transition:.35s;
}

.home-btn i{
    font-size:20px;
}

.home-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(212,163,95,.45);
}

/* ===========================
      MAIN CONTAINER
=========================== */

.about-container{
    max-width:1450px;
    margin:auto;
    padding:10px 8% 80px;
}

/* ===========================
        TITLE
=========================== */

.title-section{
    text-align:center;
    margin-bottom:70px;
    animation:fadeUp .8s ease;
}

.title-section h1{

    font-size:58px;
    font-weight:800;
    line-height:1.2;

    background:linear-gradient(
    135deg,
    #E7BE79,
    #D4A35F,
    #B8860B);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:22px;
}

.quote{

    display:inline-block;

    padding:18px 38px;

    border-radius:60px;

    color:#fff;

    font-size:18px;

    font-weight:500;

    background:linear-gradient(
    135deg,
    #D4A35F,
    #B8860B);

    box-shadow:
    0 12px 30px rgba(212,163,95,.35);

    transition:.35s;
}

.quote:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 45px rgba(212,163,95,.45);

}

/* ===========================
      CONTENT
=========================== */

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* ===========================
      GLASS CARD
=========================== */

.about-text{

    position:relative;

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);

    border:1px solid rgba(212,163,95,.20);

    box-shadow:
    0 25px 55px rgba(0,0,0,.08);

    transition:.4s;

    animation:fadeUp 1s ease;

}

.about-text:hover{

    transform:translateY(-8px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.12);

}

.about-text::before{

    content:"";

    position:absolute;

    left:0;

    top:30px;

    width:7px;

    height:90px;

    border-radius:20px;

    background:linear-gradient(
    #E7BE79,
    #B8860B);

}

.about-text h2{

    font-size:38px;

    color:#B8860B;

    margin-bottom:25px;

    font-weight:700;

}

.about-text p{

    color:#666;

    font-size:18px;

    line-height:35px;

    text-align:justify;

}
/* ===========================
      IMAGE SECTION
=========================== */

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    animation:fadeUp 1.2s ease;
}

.about-image::before{
    content:"";
    position:absolute;
    width:430px;
    height:430px;
    background:radial-gradient(circle,#D4A35F35,transparent 70%);
    border-radius:50%;
    animation:pulse 4s ease-in-out infinite;
    z-index:0;
}

.about-image::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border:2px dashed rgba(212,163,95,.35);
    border-radius:50%;
    animation:rotateCircle 25s linear infinite;
}

.about-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:560px;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:35px;
    border:6px solid #D4A35F;
    background:#fff;
    box-shadow:
        0 18px 40px rgba(0,0,0,.12),
        0 30px 70px rgba(212,163,95,.28);
    transition:.45s;
}

.about-image img:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:
        0 25px 55px rgba(0,0,0,.16),
        0 40px 90px rgba(212,163,95,.45);
}

/* ===========================
        ANIMATIONS
=========================== */

@keyframes pulse{

    0%{
        transform:scale(.95);
        opacity:.6;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(.95);
        opacity:.6;
    }

}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===========================
      TABLET
=========================== */

@media(max-width:991px){

.logo{
    font-size:34px;
}

.title-section h1{
    font-size:42px;
}

.quote{
    font-size:16px;
    padding:15px 28px;
}

.about-content{
    gap:45px;
}

.about-text{
    padding:35px;
}

.about-text h2{
    font-size:30px;
}

.about-text p{
    font-size:17px;
    line-height:31px;
}

.about-image::before{
    width:320px;
    height:320px;
}

.about-image::after{
    width:250px;
    height:250px;
}

.about-image img{
    max-width:430px;
}

}

/* ===========================
      MOBILE
=========================== */

@media(max-width:768px){

.navbar{
    justify-content:center;
    padding:22px;
}

.home-btn{
    display:none;
}

.logo{
    font-size:34px;
}

.about-container{
    padding:20px;
}

.title-section{
    margin-bottom:40px;
}

.title-section h1{
    font-size:32px;
}

.quote{
    font-size:14px;
    padding:13px 22px;
}

.about-content{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.about-image::before{
    width:240px;
    height:240px;
}

.about-image::after{
    width:180px;
    height:180px;
}

.about-image img{
    max-width:100%;
    border-radius:28px;
}

.about-text{
    padding:28px;
    text-align:center;
}

.about-text::before{
    display:none;
}

.about-text h2{
    font-size:27px;
}

.about-text p{
    text-align:center;
    font-size:16px;
    line-height:30px;
}

}

/* ===========================
    SMALL MOBILE
=========================== */

@media(max-width:430px){

.logo{
    font-size:28px;
}

.title-section h1{
    font-size:27px;
}

.quote{
    font-size:13px;
    padding:11px 18px;
}

.about-text{
    padding:22px;
    border-radius:24px;
}

.about-text h2{
    font-size:23px;
}

.about-text p{
    font-size:15px;
    line-height:28px;
}

.about-image img{
    border-width:4px;
}

}

/* ===========================
      MOBILE NAV
=========================== */

.bottom-nav{
    display:none;
}

@media(max-width:768px){

.bottom-nav{

    display:flex;

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    justify-content:space-around;

    align-items:center;

    padding:12px 0;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(15px);

    border-top:1px solid rgba(0,0,0,.08);

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    z-index:999;

}

.bottom-nav a{

    text-decoration:none;

}

.bottom-nav div{

    text-align:center;

    color:#B8860B;

    font-size:12px;

    font-weight:500;

}

.bottom-nav i{

    font-size:22px;

    margin-bottom:4px;

}

}

/* ===========================
      SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f6f6f6;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#E7BE79,#B8860B);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#9C6F08;
}
