/*
Theme Name: TRS Party
Author: Ramana
Version: 1.0
Text Domain: trs-party
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.site-header{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    padding:20px 0;
}

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#fff,#f4f4f4);
}

.hero-wrapper{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:60px;
    position:relative;
}

.hero-content h1{
    font-size:70px;
    margin:20px 0;
}

.hero-content p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-tagline{
    color:#c8102e;
    font-weight:bold;
    font-size:18px;
}

.hero-image img{
    width:100%;
    max-width:650px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    text-decoration:none;
    border-radius:8px;
    margin-right:10px;
}

.btn-primary{
    background:#c8102e;
    color:#fff;
}

.btn-secondary{
    border:2px solid #c8102e;
    color:#c8102e;
}

@media(max-width:768px){

    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-image{
        order:-1;
    }

    .hero-content h1{
        font-size:42px;
    }


}



.hero-section{
    min-height:100vh;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    #FFD400 0%,
    #FFF6BF 30%,
    #ffffff 100%);
}

.hero-wrapper{
    display:grid;
    grid-template-columns:55% 45%;
    align-items:center;
    gap:40px;
    position:relative;
    z-index:10;
}

.hero-content h1{
    font-size:70px;
    line-height:1;
    color:#1E3A8A;
    margin:20px 0;
    font-weight:900;
}

.hero-animation{
    font-size:42px;
    color:#111;
    margin-bottom:20px;
}

.typed-text{
    color:#0E7A3E;
    font-weight:900;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:30px;
}

.hero-tag{
    display:inline-block;
    background:#1E3A8A;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    font-weight:700;
}

.leader-name{
    font-size:22px;
    margin-bottom:35px;
}

.leader-name span{
    display:block;
    font-size:42px;
    color:#0E7A3E;
    font-weight:800;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#1E3A8A;
    color:#fff;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:3px solid #0E7A3E;
    color:#0E7A3E;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:600px;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.25));

    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

}

.hero-bg-shape{
    position:absolute;
    border-radius:50%;
    opacity:.2;
}

.shape-1{
    width:500px;
    height:500px;
    background:#1E3A8A;
    top:-150px;
    right:-150px;
}

.shape-2{
    width:300px;
    height:300px;
    background:#0E7A3E;
    left:-100px;
    bottom:-100px;
}


/*=================================
TRS HERO SECTION
=================================*/

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;

    background: linear-gradient(
        135deg,
        #ffd400 0%,
        #fff3a0 35%,
        #ffffff 100%
    );
}

.hero-wrapper{
    width:100%;
    display:grid;
    grid-template-columns:55% 45%;
    gap:40px;
    align-items:center;
    z-index:10;
}

.hero-content h1{
    font-size:clamp(3rem,6vw,6rem);
    line-height:1;
    margin:15px 0;

    color:#173d96;
    font-weight:900;
}

.hero-animation{
    font-size:45px;
    margin-bottom:25px;
    color:#111;
}

.typed-text{
    color:#0a7a3e;
    font-weight:900;
}

.hero-content p{
    font-size:24px;
    line-height:1.8;
    max-width:700px;
    color:#222;
}

.hero-tag{
    display:inline-block;
    background:#173d96;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-weight:700;
}

.leader-name{
    margin-top:40px;
    margin-bottom:30px;
    font-size:24px;
}

.leader-name span{
    display:block;
    font-size:46px;
    font-weight:800;
    color:#0a7a3e;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-buttons a{
    text-decoration:none !important;
}

.btn-primary{

    display:inline-block;
    background:#173d96;
    color:#fff !important;

    padding:18px 45px;
    border-radius:12px;

    font-size:18px;
    font-weight:700;

    transition:all .3s ease;

    box-shadow:0 10px 30px rgba(23,61,150,.3);
}

.btn-primary:hover{

    transform:translateY(-5px);

    background:#0f2f79;
}

.btn-secondary{

    display:inline-block;

    background:#0a7a3e;
    color:#fff !important;

    padding:18px 45px;
    border-radius:12px;

    font-size:18px;
    font-weight:700;

    transition:all .3s ease;

    box-shadow:0 10px 30px rgba(10,122,62,.3);
}

.btn-secondary:hover{

    transform:translateY(-5px);

    background:#066030;
}

/* IMAGE */

.hero-image{
    text-align:center;
}

.hero-image img{

    width:100%;
    max-width:550px;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.2));

    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }
}

/* BACKGROUND SHAPES */

.hero-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:#173d96;

    opacity:.08;

    border-radius:50%;

    top:-200px;
    right:-100px;
}

.hero-section::after{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    background:#0a7a3e;

    opacity:.08;

    border-radius:50%;

    bottom:-120px;
    left:-120px;
}

/* MOBILE */

@media(max-width:768px){

    .hero-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-image{
        order:-1;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-animation{
        font-size:28px;
    }

    .leader-name span{
        font-size:32px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-buttons a{
        width:100%;
    }

}

.btn-primary{
    background:red !important;
    color:#fff !important;
    padding:20px 50px !important;
    display:inline-block !important;
}

.btn-secondary{
    background:green !important;
    color:#fff !important;
    padding:20px 50px !important;
    display:inline-block !important;
}



.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{

    display:inline-block !important;

    padding:18px 45px !important;

    border-radius:12px !important;

    text-decoration:none !important;

    font-size:18px !important;

    font-weight:700 !important;

    color:#fff !important;

    margin-right:15px !important;

}

.hero-buttons .btn-primary{

    background:#173d96 !important;

    box-shadow:0 10px 30px rgba(23,61,150,.3);

}

.hero-buttons .btn-secondary{

    background:#0a7a3e !important;

    box-shadow:0 10px 30px rgba(10,122,62,.3);

}