/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montez&family=Poppins:wght@400;600;800&display=swap');

/* --- Main Title Style (H1) --- */
.main-title {
    font-family: 'Montez', cursive;
    font-size: 50px;           /* Cursive font thoda motha asleli bare distat */
    font-weight: 400;
    color: #f36621;           
    text-align: center;
    margin-bottom: 5px;        /* Sub-title chya javal thevnyasathi */
    line-height: 1.2;
}

/* --- Sub Title Style (H2) --- */
.sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;           /* Modern professional look */
    font-weight: 600;
    color: #212529;            /* Gold/Yellow accent color (Bhaggya Tours sathi best) */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
}

/* --- Global Paragraph --- */
p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* --- Mobile View (Responsive) --- */
@media screen and (max-width: 768px) {
    .main-title {
        font-size: 40px;      /* Mobile var thoda lahan */
    }
    
    .sub-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
}