
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: #ecf0f1;
    color: #34495e;
}

header {
    background-color: #2c3e50;
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #3498db;
}

header img {
    border-radius: 10px;
    max-width: 100%;
}

nav {
    background-color: #34495e;
    overflow: hidden;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    float: left;
}

nav a {
    color: #f8f9fa;
    display: block;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    background-color: #49a9e3;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

nav a.nav-active {
    background-color: #3498db;
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#about-owner {
    margin-top: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.owner-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.owner-photo {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid #3498db;
    transition: transform 0.3s;
}

.owner-photo:hover {
    transform: scale(1.05);
}


.gallery-container {
    position: relative;
    width: 100%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0,0,0,0.5);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

footer {
    background-color: #233140;
    color: #f8f9fa;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-top: 5px solid #3498db;
}

.social-icons {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    color: #f8f9fa;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #3498db;
}

/* Services Page */
.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.services-list li:hover {
    transform: translateY(-5px);
}

.service-item-icon {
    flex-shrink: 0;
    padding: 10px;
    background-color: #e8f6fd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.services-list h3 {
    color: #2c3e50;
    margin-top: 0;
}


/* Quote Form */
form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
    outline: none;
}

form input[type="submit"] {
    background-color: #3498db;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

form input[type="submit"]:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 100px 20px;
    background-color: #23682b;
    color: #ffffff;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
    border: none;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Reviews Page */
.review-container {
    margin-top: 40px;
}

.review {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #3498db;
}

.review p {
    margin: 0;
}

.reviewer {
    text-align: right;
    font-style: italic;
    margin-top: 10px;
    color: #7f8c8d;
}
