/*==================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f5;
    color:#333;
}

/*==================================================
                HEADER
==================================================*/

.header{
    width:100%;
    background:#fff;
    border-bottom:2px solid #c89b3c;
    padding:30px 0;
}

.brand{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
}

/*==================================================
                LOGO
==================================================*/

.logo img{
    width:170px;
    height:auto;
}

/*==================================================
                DIVIDER
==================================================*/

.divider{
    width:2px;
    height:170px;
    background:#c89b3c;
}

/*==================================================
                BRAND TEXT
==================================================*/

.brand-text h2{
    margin-top:15px;
    font-size:22px;
    font-weight:600;
    letter-spacing:3px;
    color:#123C69;
    text-align:center;
}

.brand-text h1{
    font-family:'Cinzel',serif;
    font-size:64px;
    font-weight:700;
    letter-spacing:2px;
    line-height:1;
    white-space:nowrap;
}

.padagu{
    color:#123C69;
}

.calendars{
    color:#C89B3C;
    margin-left:14px;
}

.brand-text h2{
    margin-top:14px;
    color:#123C69;
    font-size:22px;
    letter-spacing:2px;
    font-weight:600;
}

.brand-text p{
    margin-top:8px;
    font-family:'Cinzel',serif;
    font-size:20px;
    color:#C89B3C;
    letter-spacing:2px;
    text-align:center;
}

/*==================================================
            COLLECTION TITLE
==================================================*/

.collection-title{
    width:90%;
    max-width:1400px;
    margin:40px auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.title-line{
    flex:1;
    height:2px;
    background:#c89b3c;
}

.collection-title h3{
    font-family:'Cinzel',serif;
    color:#123C69;
    font-size:38px;
    letter-spacing:2px;
    white-space:nowrap;
}

.calendar-icon{
    margin-right:10px;
}

/*==================================================
                CATEGORY SECTION
==================================================*/

.categories{
    width:90%;
    max-width:1200px;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    text-decoration:none;
    color:#333;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.35s;

    display:flex;
    flex-direction:column;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}

/*==================================================
                CARD IMAGE
==================================================*/

.card img{
    width:100%;
    height: 410px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.card:hover{

transform:translateY(-15px);

}

/*==================================================
                CARD CONTENT
==================================================*/

.card-content{
    padding:22px;
    text-align:center;

    display:flex;
    flex-direction:column;

    flex:1;
}

.card-content h4{
    font-size:24px;
    color:#123C69;
    font-weight:700;
    min-height:58px;     /* Keeps all titles equal height */
    display:flex;
    align-items:center;
    justify-content:center;
}

.card-content p{
    color:#666;
    font-size:18px;
    margin:15px 0 20px;
}

/*==================================================
                BUTTON
==================================================*/

.card-content button{
    margin-top:auto;      /* Pushes button to bottom */

    background:#123C69;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.card-content button:hover{

background:#C89B3C;

color:white;

}

.card-content button span{

    margin-left:8px;

}

/*==================================================
                FEATURES
==================================================*/

.features{
    width:90%;
    max-width:1200px;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
}

.feature span{
    font-size:42px;
    flex-shrink:0;
}

.feature div{
    display:flex;
    flex-direction:column;
}

.feature h5{
    color:#123C69;
    font-size:17px;
    font-weight:700;
    margin:0 0 5px 0;
    text-transform:uppercase;
}

.feature p{
    color:#666;
    font-size:14px;
    line-height:1.5;
    margin:0;
}
/*==================================================
                FOOTER
==================================================*/

.footer{
    background:#123C69;
    color:#fff;
    border-top:4px solid #C89B3C;
    padding:30px 20px;
    text-align:center;
}

.footer p{
    margin:8px 0;
    font-size:15px;
    line-height:1.8;
}

.footer span{
    color:#C89B3C;
    margin:0 15px;
    font-weight:bold;
}

.copyright{
    margin-top:15px;
    color:#ddd;
    font-size:13px;
}
/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:1200px){

.categories{

grid-template-columns:repeat(2,1fr);

}

.features{

grid-template-columns:repeat(2,1fr);

}

.brand-text h1{

font-size:48px;

}

}

@media(max-width:768px){

.brand{

flex-direction:column;

text-align:center;

}

.divider{

display:none;

}

.brand-text h1{

font-size:36px;

white-space:normal;

}

.collection-title{

flex-direction:column;

gap:15px;

}

.title-line{

width:100px;

}

.collection-title h3{

font-size:28px;

text-align:center;

}

.categories{

grid-template-columns:1fr;

}

.features{

grid-template-columns:1fr;

}

.card img{

height:420px;

}

}