/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

/* Header */
#main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #bb4444;
    padding: 15px 40px;
}

.logo {
    width: 120px;
    height: auto;
}

/* Navigation */
#main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

#main-nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

#main-nav a:hover {
    color: #ddd;
}

/* Intro Section */
#intro {
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}

#intro h2 {
    color: #bb4444;
    font-size: 36px;
    margin-bottom: 20px;
}

#intro p {
    font-size: 18px;
    line-height: 1.8;
}

/* Gallery */
#dog-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
}

.dog-image {
    background-color: white;
    padding: 10px;
    border: 4px solid #bb4444;
    border-radius: 10px;
}

.dog-image img {
    width: 500px;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
#main-footer {
    background-color: #bb4444;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 100px;
}

#main-footer ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

#main-footer a {
    color: white;
    text-decoration: none;
}

#main-footer p {
    max-width: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    #main-header {
        flex-direction: column;
        text-align: center;
    }

    #main-nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    #main-footer {
        flex-direction: column;
        text-align: center;
    }

    #main-footer ul {
        flex-direction: column;
    }
}

#hero {
    background: linear-gradient(rgba(0,0,0,0.4),
    rgba(0,0,0,0.4)),
    url('732c1370-a5b4-4737-b25d-3cb675a51bdf.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 25px;
}

.btn {
    background: #bb4444;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.btn:hover {
    background: #a13333;
}

/* Dogs Page */

.dogs-title{
    text-align:center;
    padding:60px 20px;
}

.dogs-title h1{
    color:#bb4444;
    font-size:48px;
    margin-bottom:15px;
}

.dogs-title p{
    font-size:20px;
    color:#555;
}

.dogs-container{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.dog-card{
    width:340px;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition:0.3s;
}

.dog-card:hover{
    transform:translateY(-8px);
}

.dog-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.dog-card h2{
    color:#bb4444;
    padding:15px 20px 5px;
}

.dog-card p{
    padding:0 20px 20px;
    line-height:1.7;
    color:#444;
}

/* Contact Page */

.contact-title{
    text-align:center;
    padding:60px 20px;
}

.contact-title h1{
    color:#bb4444;
    font-size:48px;
    margin-bottom:15px;
}

.contact-title p{
    font-size:20px;
    color:#555;
}

.contact-container{
    max-width:1100px;
    margin:auto;
    padding:20px;
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    justify-content:center;
}

.contact-info,
.contact-form{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.contact-info{
    flex:1;
    min-width:300px;
}

.contact-info h2{
    color:#bb4444;
    margin-bottom:20px;
}

.contact-info p{
    line-height:1.8;
}

.contact-form{
    flex:1;
    min-width:300px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:16px;
}

.contact-form button{
    background:#bb4444;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

.contact-form button:hover{
    background:#a13333;
}
