/* Basic Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif; /* Professional sans-serif font */
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8; /* Light background */
}

/* Container for centering content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.page-header {
    background-color: #2c3e50; /* Professional dark blue */
    color: #fff;
    padding: 1.5rem 0;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Center if desired, or use space-between */
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-right: 15px; /* Space between title and flag */
}

.country-flag {
    height: 40px; /* Adjust size as needed */
    width: auto;
    vertical-align: middle; /* Helps alignment */
}

/* --- Main Content Sections --- */
main section {
    padding: 30px 0;
}

main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #34495e; /* Slightly softer dark blue */
    margin-bottom: 20px;
    text-align: center;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: justify; /* Justified text can look professional */
}

/* --- Highlights Section --- */
.highlights {
    background-color: #fff; /* White background for contrast */
    padding-bottom: 40px;
}

.highlights-grid {
    display: grid;
    /* Responsive grid: 1 column on small, 2 on medium, up to 4 on large */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 25px; /* Space between grid items */
}

.attraction {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden; /* Ensures image corners match border-radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Subtle hover effect */
}

.attraction:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.attraction img {
    width: 400px;
    height: 225px;
    object-fit: contain;
    display: block;
    border-bottom: 1px solid #eee;
}

.attraction h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 15px 15px 10px 15px;
}

.attraction p {
    font-size: 0.95rem;
    padding: 0 15px 15px 15px;
    color: #555;
}

/* --- Call to Action Section --- */
.call-to-action {
    text-align: center;
    padding: 40px 0;
    background-color: #ecf0f1; /* Light grey background */
    margin-top: 30px;
}

.call-to-action h2 {
    margin-bottom: 10px;
}

.call-to-action p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Optional Button Styling */
.cta-button {
    display: inline-block;
    background-color: #e74c3c; /* Engaging color */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b; /* Darker shade on hover */
}


/* --- Footer --- */
.page-footer {
    background-color: #34495e; /* Match header or use a dark grey */
    color: #bdc3c7; /* Light grey text for footer */
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.photo-credits {
    font-size: 0.8rem; /* Small font size */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    .country-flag {
        height: 30px;
    }
    main h2 {
        font-size: 1.8rem;
    }
    .intro p {
        font-size: 1rem;
    }
    .attraction h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
        margin-right: 10px;
    }
    .country-flag {
        height: 25px;
    }
     /* Stack header items if needed on very small screens */
    /* .header-content { 
        flex-direction: column;
        text-align: center;
    } 
    .page-header h1 { margin-right: 0; margin-bottom: 5px; } */
}