/* allCabins */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, arial, sans-serif;
    color: #343434;
    background-color: #ffffff; 
    min-height: 100vh;
}

h1, h2, h3, p, nav {
    font-family: Quando, arial, serif;
    color: #173e43; 
}

header {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
    background-color: #ffffff; 
    padding: 2em;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    justify-content: center;
}

header h1 {
    font-size: 2.5em;
    color: #173e43; 
    margin: 0;
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2em;
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

article {
    width: calc(50% - 1em); 
    max-width: 500px;
    min-width: 400px;
    background: #ffffff; 
    border-radius: 16px;
    padding: 2em;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 1px solid #e8f5e8; 
}

article:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

article h2 {
    color: #173e43; 
    font-size: 1.5em;
    margin-bottom: 1em;
    text-align: center;
    border-bottom: 2px solid #173e43; 
    padding-bottom: 0.5em;
}

article img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5em;
    border: 3px solid #e8f5e8; 
}

article p {
    margin: 1em 0;
    line-height: 1.6;
    color: #343434; 
}

span {
    font-weight: bold;
    color: #173e43; 
}

.price {
    font-size: 1.2em;
    color: #e74c3c; 
    font-weight: bold;
}

footer {
    background-color: #173e43; 
    color: #ffffff; 
    text-align: center;
    padding: 2em;
    margin-top: 3em;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

footer a {
    color: #ffffff; 
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
    color: #e8f5e8; 
}

/* Responsive design */
@media (max-width: 900px) {
    article {
        width: 100%; 
        min-width: auto;
    }
    
    section {
        padding: 1em;
    }
}