/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	box-sizing: border-box;    
}

/* Header Styles */
header {
    background-color: #007BFF;
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-family: Arial, "Sans Serif Collection", "Times New Roman", Georgia;
    font-size: 31px;
}
section#about { 
	
	padding: 20px; 
	margin: 20px;
	border: 1px solid #ccc;
} 
h2 {
	color: #4CAF50;
	margin-top: 0;
}
p {
	margin: 10px 0;
}
/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
    font-size: 28px;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 2rem;
    text-align: center;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16pt;
}

.buttons {
    margin-bottom: 20px;
}

button {
    margin: 15px;
	padding: 60px 60px;
	cursor: pointer;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* space between the cards */
    padding: 20px;
}

.photo {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 260px;
    display: block; /* Important: Show the photos! */
}

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

.photo img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

.photo p {
     padding: 10px;
    font-size: 14px;
    color: #333;
    text-align: center;
	
}
/* Footer Styles */
footer {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 1rem;
    position: bottom;
    width: 100%;
    bottom: 0;
    
}

/* Contact Section Styles */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 0.5rem;
}

form input, form textarea {
    padding: 0.5rem;
    margin-top: 0.2rem;
}

form button {
    margin-top: 1rem;
    padding: 0.7rem;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

/* Responsive Design for Small Devices */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }
    
    main {
        padding: 1rem;
    }
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }

    header, footer {
        text-align: left;
        padding: 1rem 2rem;
    }

    main {
        padding: 1rem 2rem;
    }

    .tab button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* High-Resolution Screens */
@media (min-resolution: 2dppx) {
    header, footer {
        padding: 1rem 2rem;
    }

    main {
        padding: 2rem 4rem;
    }
}

/* Gallery Section Styles */
.buttons {
    margin-bottom: 20px;
}

.btn {
    margin-right: 0px;
    padding-top: 20px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 20px;
    background-color: #FB3838;
    color: white;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #00E0F0;
}

.content {
    display: none;
    
}
.content.active{
	display: block;
}

/* Last rule you already had */

.content.active {
    display: block;
}

/* --- New styles you are adding --- */

.buttons a button {
    background-color: #FB3838;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
}

.buttons a:hover button {
    background-color: #00E0F0;
}

.buttons a:visited button {
    background-color: #6c757d;
}
