/*
    Pato-inspired theme styles
*/

/*==================================================================
[ Google Fonts ]*/
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Montserrat:wght@400;500;600;700&display=swap');

/*==================================================================
[ Body ]*/
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #666;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Courgette', cursive;
    color: #222;
}

a {
    text-decoration: none;
    color: #d61c22;
    transition: all 0.3s ease;
}

a:hover {
    color: #222;
}

/*==================================================================
[ Header ]*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-family: 'Courgette', cursive;
    font-size: 2rem;
    color: #222;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: #d61c22;
}

/*==================================================================
[ Hero Section ]*/
.hero-section {
    height: 100vh;
    background-image: url('https://preview.colorlib.com/theme/pato/images/slide1-01.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    background-color: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn-pato {
    background-color: #d61c22;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-pato:hover {
    background-color: #222;
    color: #fff;
}

/*==================================================================
[ Section ]*/
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: #d61c22;
}

.section-title p {
    font-size: 1.2rem;
    color: #888;
    margin-top: -10px;
}

/*==================================================================
[ About Section ]*/
.about-text {
    padding-right: 30px;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text .lead {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/*==================================================================
[ Gallery Section ]*/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/*==================================================================
[ Contact/Booking Section ]*/
.booking-section {
    background-image: url('https://preview.colorlib.com/theme/pato/images/bg-cover-video-02.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.booking-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    color: #333;
}

.booking-form .form-control {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    height: 50px;
    border-radius: 5px;
}

.booking-form .form-control:focus {
    background-color: #fff;
    border-color: #d61c22;
    box-shadow: none;
}

.booking-form textarea.form-control {
    height: auto;
}

.booking-form .btn-pato {
    width: 100%;
}

/*==================================================================
[ Footer ]*/
footer {
    background-color: #222;
    color: #aaa;
    padding: 60px 0;
}

footer h5 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

footer p, footer a {
    color: #888;
}

footer a:hover {
    color: #fff;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}
