* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

.hero {
    background-image: url('andaman.jpg');
    background-size: cover;
    background-position: bottom;
    height: 150vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.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: 10;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.8rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 300;
}

section {
    padding: 4em 2em;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5em;
    color: #1a1a1a;
}

.things-to-do {
    padding: 4em 2em;
    text-align: center;
}

.things-to-do h2 {
    font-size: 2.5rem;
    margin-bottom: 2em;
    font-weight: 700;
    color: #1a1a1a;
}

.activities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2em;
    padding-bottom: 40px;
}

.activity-card {
    background-color: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1em;
}

.activity-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
    color: #333;
}

.activity-card p {
    font-size: 1rem;
    color: #555;
}


.about {
    background-color: #f9f9f9;  /* Light background color */
    padding: 4em 2em;
    margin-top: 3em;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.about-overlay {
    padding: 2em;
    text-align: left;  /* Align text to the left */
    border-radius: 15px;
    max-width: 80%;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8em;
    color: #1a1a1a;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    text-align: justify;  /* Justify text */
}