/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 10p;
    background: #000910;
    color: #f7f2f2;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between links */
}

.nav-container a {
    color: rgb(244, 240, 240); /* Fixed color issue */
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
}

.nav-container a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('Images/fishports.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Min-main Section */
.Min-main {
    background: url('Images/min-1.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    position: relative;
}

.btn {
    background: #f39c12;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Min Section */
.Min {
    background: url('Images/min-2.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    position: relative;
}

/* about-main Section */
.about-main {
    background: url('Images/town.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    position: relative;
}

/* faq-main Section */
.faq-main {
    background: url('Images/house.png') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: white;
    position: relative;
}

.btn {
    background: #f39c12;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* Features Section */
.features {
    background: #020219;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: #64b5ef;
    padding: 20px;
    border-radius: 8px;
}

/* Buy Section */
.buy {
    text-align: center;
    padding: 50px 0;
}

