/*
Author: Stephanie Colorado-Labrada
Date: 2-20-25
File: styles.css
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400;500;600;700&amp;display=swap');

/* CSS Reset */
body, header, nav, main, footer, img, h1, h3 {
    margin: 0;
    padding: 0;
    border: 0;
}

footer {
    text-align: center;
    font-size: 0.85em;
    background-color:#00C9FC ;
    color:#FFFFFF;
    padding:1% 0;
    }
    
footer a {
    color: #3e6d8f;
    text-decoration: none;
 }

.logo {
    font-family: "DynaPuff", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    color: #FFFFFF;
    padding: 16px 16px;
    margin-right: auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #00C9FC;
}


/* Apply bullet points to all other non-navigation lists */
ul {
    list-style-type: disc;
    padding-left: 20px;
}

li {
    display: block;
}

li a {
    display: block;
    color: white;
    font-family: "Montserrat", serif;
    font-style: normal;
    text-align: center;
    padding: 16px 16px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-decoration: none;
}

li a:hover {
    background-color: #41DDFF;
}
/* Why us list style! */
.why-us {
    text-align: center; 
    padding-bottom: 20px;
}

.why-us ul {
    list-style-type: disc; 
    padding-left: 0px; 
    text-align: left; 
    display: inline-block !important; 
    margin: 0 auto;
}
.why-us li {
    display: list-item !important; 
}


.horizontal-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Style rule for ABOUT US section */
.about-text {
    font-family: "Montserrat", serif;
    font-style: normal;
    font-size: 15px;
    margin: 0;
    background-color:rgba(255, 235, 80, 0.5);
    padding: 10px;
    text-align: center;
    display: block;
    width: auto;
}

/* Style rule for CHOOSE US section */
.choose-us-text {
    font-family: "Montserrat", serif;
    font-style: normal;
    font-size: 15px;
    margin: 0;
    text-align: center;
}

.why-us {
    font-family: "Montserrat", serif;
    font-style: normal;
    font-size: 15px;
    margin: 0;
    text-align: center;
    color:#128FC8;
}

/*  Headers */
.about-us {
    font-family: "Montserrat", serif;
    font-size: 25px;
    text-align: center;
}

.your-pet {
    font-family: "Montserrat", serif;
    font-size: 25px;
    text-align: center;
    color:#128FC8;
}

.choose {
    font-family: "Montserrat", serif;
    font-size: 25px;
    text-align: center;
}

.with-us {
    font-family: "Montserrat", serif;
    font-size: 20px;
    text-align: center;
    color:#128FC8;
}

h2 {
    text-align: center;
    color: #00C9FC;
    font-size: 20px;
}

/* Circle Image Styles */
.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 420px;
    margin: 0 auto;
}

.cat-image, .dog-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.cat-image:hover, .dog-image:hover {
    transform: scale(1.1); /* Slightly enlarge the image */
    opacity: 0.8; /* Make the image a bit transparent */
}

/* DOGS HTML PAGE*/
.food-choices{
    font-family: "DynaPuff", serif;
    font-size: 25px;
    text-align: center;
    color:#FFD301;
}


/* CATS HTML PAGE */
.food-choices{
    font-family: "DynaPuff", serif;
    font-size: 25px;
    text-align: center;
    color:#2ECBE9;
}

.cat-food:hover{
    transform: scale(1.05); 
    opacity: 0.8; 
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition */
}

.best-cat-food{
    display:flex;
    justify-content:center;
    flex-wrap:nowrap;
    padding:2rem;
    font-family:"Montserrat", serif;
}
.best-cat-food{
    text-align:center;
    padding:2rem;
    background-color:rgba(255, 235, 80, 0.5);
}

.best-cat-food{
    display:inline-block;
    margin-bottom:0rem;
}

.cat-food{
    display:inline-block;
    width:50%;
    margin:2rem;
    text-align:center;
    font-family:"Montserrat", serif;
}

.cat-food img {
    width: 200px;  
    height: 200px;
    object-fit: contain; 
    display: block;
}

.cat-food h3{
    margin-top:10px;
    font-size:1.5rem;
}

.cat-food p{
    font-size:1.1rem;
}

.cat-food{
    background:rgba(255, 235, 80, 0.5);
    padding:20px;
    border-radius: 10px;
    text-align:center;
    max-width:300px;
    box-shadow: 2px 2px 2px 10px rgba(0, 201, 252, 0.3);
}

