/* ==========================================
SERVICE PAGE
========================================== */

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

body{

font-family:'Poppins',sans-serif;
background:#071A2D;
color:#fff;

}

/* HERO */

.service-hero{

height:100vh;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

padding:120px 0;

background:
linear-gradient(rgba(7,26,45,.75),
rgba(7,26,45,.85)),
url("../images/services/photography/hero.jpg");

background-size:cover;

background-position:center;

}

.service-hero span{

color:#2fa8ff;

letter-spacing:3px;

font-weight:600;

text-transform:uppercase;

}

.service-hero h1{

font-size:72px;

margin:25px 0;

line-height:82px;

}

.service-hero p{

max-width:800px;

margin:auto;

font-size:20px;

line-height:34px;

color:#d9d9d9;

}

.service-hero .primary-btn{

margin-top:40px;

display:inline-block;

}

/* ABOUT */

.service-about{

padding:120px 0;

text-align:center;

}

.service-about h2{

font-size:48px;

margin-bottom:30px;

}

.service-about p{

max-width:850px;

margin:auto;

line-height:34px;

font-size:18px;

color:#cfcfcf;

}

/* SERVICES */

.service-list{

padding:120px 0;

}

.service-list .service-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:60px;

}

.service-list .service-card{

background:#10263d;

padding:40px;

border-radius:20px;

transition:.4s;

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

}

.service-list .service-card:hover{

transform:translateY(-10px);

border-color:#2fa8ff;

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

}

.service-list h3{

font-size:24px;

margin-bottom:20px;

}

.service-list p{

color:#d7d7d7;

line-height:30px;

}

/* FOOTER */

footer {
    padding: 60px 0 20px;
    background: #081b2e;
    color: #aaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

footer h2 {
    color: #fff;
    margin-bottom: 15px;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

footer p {
    line-height: 1.7;
}

footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

footer a:hover {
    color: #0077C8;
}

footer .fab {
    display: inline-block;
    font-size: 22px;
    margin-right: 15px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/*==============================
SERVICE LIST
==============================*/

.service-items{
    max-width:900px;
    margin:60px auto 0;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.service-item{
    background:#10263d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:10px 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    transition:.35s;
}

.service-item:hover{
    transform:translateY(-5px);
    border-color:#2fa8ff;
    box-shadow:0 15px 35px rgba(0,0,0,.3);
}

.service-item h3{
    font-size:24px;
    color:#fff;
    margin:0;
}

.book-btn{
    background:#2fa8ff;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.book-btn:hover{
    background:#fff;
    color:#081b2e;
}

/* ==============================
   RESPONSIVE SERVICE PAGE
============================== */


/* Tablet */
@media(max-width:992px){

.service-hero{
    height:auto;
    padding:150px 30px 100px;
}

.service-hero h1{
    font-size:52px;
    line-height:62px;
}

.service-hero p{
    font-size:18px;
    line-height:30px;
}


.service-items{
    max-width:100%;
    padding:0 20px;
}


.service-item h3{
    font-size:22px;
}


}


/* Mobile */
@media(max-width:768px){

.service-hero{
    min-height:100vh;
    padding:120px 20px 80px;
}


.service-hero span{
    font-size:14px;
    letter-spacing:2px;
}


.service-hero h1{
    font-size:34px;
    line-height:44px;
    margin:20px 0;
}


.service-hero p{
    font-size:16px;
    line-height:28px;
}


.service-list{
    padding:70px 0;
}


.section-title span{
    font-size:14px;
}


.section-title h2{
    font-size:32px;
}


.service-items{
    margin-top:40px;
    gap:20px;
    padding:0 15px;
}


.service-item{

    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:25px 20px;

    gap:20px;

}


.service-item h3{

    font-size:18px;
    line-height:28px;

}


.book-btn{

    width:100%;
    padding:12px 20px;

}


footer{

    text-align:center;

    padding:40px 20px;

}

}


/* Small Mobile */
@media(max-width:400px){

.service-hero h1{

    font-size:30px;
    line-height:38px;

}


.service-hero p{

    font-size:15px;

}


.service-item h3{

    font-size:17px;

}

}

@media(max-width:768px){

.service-items{
    width:100%;
    max-width:100%;
    padding:0 15px;
}

.service-item{
    width:100%;
    max-width:100%;
    overflow:hidden;
}

.service-item h3{
    width:100%;
    font-size:18px;
    line-height:28px;
    overflow-wrap:break-word;
    word-break:break-word;
}

}