/*=========================================
    DELISWEET
=========================================*/

:root{

    --green:#556419;
    --green-dark:#4F5A1D;
    --green-light:#8A9651;

    --gold:#D7B96B;

    --cream:#F8F3E8;

    --text:#2F2F2F;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    background:var(--green);
    color:white;

    font-family:'Montserrat',sans-serif;

}

h1,h2,h3,h4{

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

}

a{

    text-decoration:none;

}

img{

    width:100%;

    display:block;

}


/*=========================
HEADER
=========================*/

.header{

    padding:25px 0;

}

.logo{

    width:440px;

    margin:auto;

}


/*=========================
HERO
=========================*/

.hero{

    margin-top:20px;

    margin-bottom:60px;

}

.hero-image{

    position:relative;

    overflow:hidden;

    border-radius:12px;

    box-shadow:0 12px 35px rgba(0,0,0,.35);

}

.hero-image img{

    height:600px;

    object-fit:cover;

}

.hero-card{

    position:absolute;

    left:50%;

    bottom:-180px;

    transform:translateX(-50%);

    background:var(--cream);

    color:#222;

    width:70%;

    text-align:center;

    padding:14px;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

}

.hero-card h1{

    font-size:3rem;

    line-height:1.15;

}


/*=========================
SERVICES
=========================*/

.services{

    margin-bottom:70px;

}

.service-box{

    padding:30px;

}

.service-box i{

    color:var(--gold);

    font-size:55px;

    margin-bottom:15px;

}

.service-box h3{

    font-size:1.8rem;

    margin-bottom:15px;

}

.service-box p{

    color:#ECECEC;

    font-size:.95rem;

    line-height:1.7;

}


/*=========================
GALERIA
=========================*/

.gallery{

    margin-bottom:70px;

}

.gallery img{

    height:260px;

    object-fit:cover;

    border-radius:12px;

    transition:.4s;

    box-shadow:0 8px 18px rgba(0,0,0,.3);

}

.gallery img:hover{

    transform:translateY(-8px);

}


/*=========================
CTA
=========================*/

.cta{

    background:rgba(255,255,255,.08);

    border-radius:12px;

    margin-bottom:60px;

}

.cta h2{

    font-size:3rem;

}

.cta p{

    width:70%;

    margin:auto;

    color:#f2f2f2;

}

.btn-warning{

    background:var(--gold);

    border:none;

    color:#222;

    padding:15px 45px;

    border-radius:40px;

    font-weight:600;

}

.btn-warning:hover{

    background:#E6C877;

}


/*=========================
FOOTER
=========================*/

.footer{

    padding:40px 0;

}

.footer a{

    color:var(--gold);

    font-size:30px;

    margin:0 15px;

    transition:.3s;

}

.footer a:hover{

    color:white;

}


/*=========================
DECORATIVE FRAME
=========================*/

.container{

    position:relative;

}

.container::before{

    content:"";

    position:absolute;

    left:10px;

    top:10px;

    width:70px;

    height:70px;

    border-top:2px solid rgba(215,185,107,.7);

    border-left:2px solid rgba(215,185,107,.7);

}

.container::after{

    content:"";

    position:absolute;

    right:10px;

    bottom:10px;

    width:70px;

    height:70px;

    border-bottom:2px solid rgba(215,185,107,.7);

    border-right:2px solid rgba(215,185,107,.7);

}


/*=========================
CARDS
=========================*/

.card{

    border:none;

    background:var(--cream);

    border-radius:12px;

    overflow:hidden;

    transition:.4s;

}

.card:hover{

    transform:translateY(-8px);

}

.card-title{

    font-family:'Cormorant Garamond',serif;

    font-size:2rem;

}


/*=========================
FORM
=========================*/

.form-control{

    background:transparent;

    border:1px solid rgba(255,255,255,.5);

    color:white;

}

.form-control:focus{

    background:transparent;

    color:white;

    border-color:var(--gold);

    box-shadow:none;

}

.form-select{

    background:transparent;

    color:white;

    border:1px solid rgba(255,255,255,.5);

}

.form-select:focus{

    box-shadow:none;

    border-color:var(--gold);

}


/*=========================
SECTION TITLE
=========================*/

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:3rem;

    color:white;

}

.section-title p{

    color:#ddd;

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.hero-card{

    width:85%;

}

.hero-card h1{

    font-size:2.3rem;

}

.cta p{

    width:100%;

}

}

@media(max-width:768px){

.hero-image img{

    height:350px;

}

.hero-card{

    position:relative;

    bottom:auto;

    left:auto;

    transform:none;

    width:100%;

    margin-top:-20px;

}

.hero-card h1{

    font-size:1.8rem;

}

.service-box{

    margin-bottom:35px;

}

.gallery img{

    height:220px;

}

.cta h2{

    font-size:2rem;

}

}


.divisor {
            width: 60px;
            height: 2px;
            background-color: var(--dorado);
            margin: 15px auto;
        }


.card-gourmet {
            background: white;
            border: 1px solid rgba(212, 178, 111, 0.3);
            text-align: center;
        }
.card-img-placeholder {
            background-color: #e2dcce;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #7a7365;
            font-style: italic;
            object-fit:cover;
        }
.card-body {
            padding: 20px;
        }
.card-title {
            font-size: 20px;
            margin-bottom: 10px;
        }
.card-text {
            color: #666;
            font-size: 14px;
        }
