/* General Style */
@font-face {
    font-family: 'CustomFont';
    src: url('StyleScript-Regular.ttf') format('truetype');
}

body {
    font-family: 'Poppins', sans-serif, 'Arial', sans-serif;
    background-color: #fdf6e3; /* Very light tan */
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

.site-title {
    font-family: 'CustomFont', sans-serif;
    font-size: 2.5rem;
    color: #8aa588; /* Sage green */
}

.site-title .fas {
    color: #8aa588;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #8aa588, #6b8b6b); /* Gradient sage green */
    color: black;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
    border-bottom: 2.5px solid #5a755a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    padding: 0 20px;
}

.carousel-item .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hero Heading */
.hero h1 {
    font-family: 'CustomFont', sans-serif;
    font-size: 5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s;
    line-height: 1.2;
}

/* Hero Paragraph */
.hero p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    animation: fadeIn 1.5s;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Icon */
.hero-icon {
    font-size: 4rem;
    color: black;
    animation: bounce 1.5s infinite;
}

/* Adjust carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #6b8b6b; /* Sage accent */
}

/* Optional: Styling for carousel indicators */
.carousel-indicators button {
    background-color: #6b8b6b; /* Sage accent */
}

/* Reduce the width of the left container */
.smaller-nav {
    max-width: 200px;
    margin-right: 20px;
}

/* Adjust pill sizes */
.nav-pills .nav-link {
    font-family: 'Roboto', sans-serif;
    color: black;
    background-color: #8aa588;
    border-radius: 5px;
    margin-bottom: 8px;
    padding: 8px 10px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.nav-pills .nav-link.active {
    background-color: #6b8b6b;
    color: #8aa588;
}

.nav-pills .nav-link:hover {
    background-color: #6b8b6b;
    color: black;
    transform: scale(1.03);
}

/* Tab Content */
.tab-content, .card-body {
    background: #fdf6e3; /* Light tan background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s;
}

/* Headers */
h2, h3 {
    font-family: 'CustomFont', sans-serif;
    color: #8aa588;
    margin-bottom: 15px;
    font-size: 4rem;
    text-align: center;
}

h4 {
    font-family: 'CustomFont', sans-serif;
    color: black;
    text-decoration: underline;
    font-size: 2rem;
    text-align: center;
}

/* List */
ul {
    padding-left: 20px;
    text-align: left !important;
}

li {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

li:hover {
    transform: translateX(10px);
    color: #6b8b6b;
}

/* Footer Styles */
.footer {
    background-color: #6b8b6b !important;
    color: black !important;
    text-align: center;
}

.footer a {
    color: black !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #8aa588 !important;
}

/* Clickable Image Style */
.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Full-Screen Background Image */
.cover-page {
    background-image: url('three_dogs.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'CustomFont', sans-serif;
    overflow: hidden;
}

.cover-page h1,
.cover-page p {
    margin: 0;
    padding: 0;
}

/* Cover Page Text Style */
.cover-page h1 {
    font-size: 6rem;
    font-weight: 100;
    text-shadow: 
        2px 2px 0px black,  
        -2px -2px 0px black, 
        2px -2px 0px black,  
        -2px 2px 0px black,
        1px 0px 0px black,
        0px 1px 0px black,
        -1px 0px 0px black,
        0px -1px 0px black;
}

.cover-page p {
    font-family: 'Verdana' !important;
    font-size: 3rem;
    margin-top: 150px;
    margin-bottom: 150px;
    text-shadow: 
        2px 2px 0px black,  
        -2px -2px 0px black, 
        2px -2px 0px black,  
        -2px 2px 0px black,
        1px 0px 0px black,
        0px 1px 0px black,
        -1px 0px 0px black,
        0px -1px 0px black;
}

/* Button Style on Cover Page */
.cover-page .btn-primary {
    background-color: #8aa588;
    color: white;
    font-size: xx-large;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    z-index: 2;
    text-shadow: 
        1px 1px 0px black,
        -1px 1px 0px black,
        1px -1px 0px black,
        -1px -1px 0px black; /* Thin black outline around text */
}

.cover-page .btn-primary:hover {
    background-color: #6b8b6b;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.slide-in-left {
    animation: slideInFromLeft .6s ease-out;
}

/* Media Queries */

/* Tablets */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    .smaller-nav { width: 100% !important; max-width: none !important; margin-right: 0 !important; }
    .nav-pills .nav-link { font-size: 1rem; margin-bottom: 5px; }
    .site-title { font-size: 2rem; }
    .tab-content { padding: 15px; }
    .nav-pills { display: flex; justify-content: space-between; flex-wrap: wrap; width: 100%; padding: 0; }
    .nav-pills .nav-link { width: 100%; text-align: center; padding: 10px; flex-grow: 1; margin: 0; }
    .cover-page { background-size: cover; background-position: center top; height: 80vh; }
    .cover-page h1 { font-size: 4.5rem; }
    .cover-page p { font-size: 2rem; margin-top: 100px; margin-bottom: 100px; }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .smaller-nav { width: 100% !important; max-width: none !important; margin-right: 0 !important; }
    .nav-pills { text-align: center; display: flex; justify-content: space-between; width: 100%; padding: 0; }
    .nav-pills .nav-link { text-align: center; font-size: 0.9rem; padding: 12px 0; flex-grow: 1; margin: 0; }
    .tab-content { padding: 10px; }
    .service-item h4 { font-size: 1.2rem; }
    .service-item p { font-size: 0.9rem; }
    .cover-page { height: 100vh; background-size: cover; background-position: center center; }
    .cover-page h1 { font-size: 3rem; }
    .cover-page p { font-size: 1.5rem; margin-top: 50px; margin-bottom: 50px; }
    .cover-page .btn-primary { font-size: 1.5rem; padding: 10px 20px; }
}
