body {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    background: white;
    color: #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3.5px 100px;
    background-color:#a7a7a7fd;
}

.logo img{
    width: 95%;
    height: 130px;
}

.login img{
    width: 95%;
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 45px;
    font-weight: bold;
    color: #f2efe5;
}

.nav-links li a {
     color: #f2efe5;
    text-decoration: none;
}

.call-button {
    background: linear-gradient(90deg, rgb(221, 216, 114) 10%, rgb(238, 236, 144) 35%, rgb(225, 228, 85) 100%);
     color: #000000;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.hero {
    position: relative;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
   background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(189, 189, 189) 35%, rgb(231, 230, 233) 100%);
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(50%) contrast(120%);
}

.hero-text {
    top: 50%;
    left: 50%;
    transform: translate(-35%, 10%);
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    font-size: 3.9vh;
    text-align: justify;
    color: rgb(0, 0, 0);
}

.hero-text h1, .hero-text h1 {
    margin: 5px 0;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, rgb(221, 216, 114) 10%, rgb(238, 236, 144) 35%, rgb(225, 228, 85) 100%);
    color: #f2efe5;
    padding: 10px 85px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}


.yacht-list {
    text-align: center;
    padding: 50px 20px;
    color: #020202;
}
.yacht-list h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.yacht-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
}
.yacht-card {
   color: #000000;
   background-color:#c5c5cfc2;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.yacht-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.yacht-info {
    padding: 15px;
}
.yacht-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #000000;
}
.yacht-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444242;
}
.details-button {
    display: inline-block;
    background: #004d40;
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}
.details-button:hover {
    background: #00796b;
}
.featured {
    border: 2px solid #ffd700;
    position: relative;
}
.featured::before {
    content: "Featured";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e2c000;
    color: #000;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 3px;
}

#carouselExample {
    max-width: 600px;  
    max-height: 400px; 
    margin: auto; 
}

#carouselExample img {
    width: 50%;   
    height: 400px; 
    object-fit: cover; 
}


.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.filter-btn {
    background: #004d40;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.filter-btn:hover {
    background: #00796b;
    transform: scale(1.05);
}

.filter-btn:active {
    background: #005a4d;
    transform: scale(0.95);
}



#main-footer {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 40px 20px 20px;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #f1f1f1;
}

.footer-logo p {
    font-size: 1.1rem;
    color: #000000;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #0c0b0b;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fdfdfd;
}

.footer-social a {
    margin: 0 10px;
    color: #000000;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e0cc14;
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #000000;
    border-top: 1px solid #000000;
    padding-top: 15px;
}
