/* styles.css */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #F1F1F1; /* Light gray background */
    color: #333; /* Dark gray text */
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-x: hidden;
}

/* Header */
header {
    background: #004D40;  /* Navy Blue */
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 5px solid #FF6F00; /* Orange accent border */
}

header h1 {
    font-size: 3em;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

header p {
    font-size: 1.2em;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Content Layout */
.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

/* Sections Styling */
.section {
    background-color: rgba(255, 255, 255, 0.9); /* White background */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FF6F00; /* Orange accent */
}

.section h2 {
    font-size: 2em;
    font-family: 'Raleway', sans-serif;
    color: #004D40; /* Navy Blue */
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    font-size: 1.1em;
    padding: 5px 0;
}

/* Links Styling */
a {
    color: #FF6F00; /* Orange */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004D40; /* Navy Blue */
}

/* Button Styles */
button {
    background-color: #FF6F00; /* Orange */
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #FF3D00; /* Deep Orange */
}

/* Footer */
footer {
    background-color: #004D40; /* Navy Blue */
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer p {
    font-size: 1.2em;
    margin: 0;
}

/* Photos Section */
.photos-section {
    background-color: #FFFFFF;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #FF6F00;
    margin-top: 40px;
}

.photos-section h2 {
    font-size: 2em;
    color: #004D40;
    margin-bottom: 20px;
    text-align: center;
}

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

.photo-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .content {
        gap: 20px;
    }

    .section h2 {
        font-size: 1.6em;
    }

    header h1 {
        font-size: 2.5em;
    }
}
