/* General styles with background image */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-image: url('back.jpg'); /* Path to your background image */
    background-size: cover; /* Ensures the image covers the entire page */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    color: #333; /* Ensures text is readable */
}

/* Header styles */
header {
    background: rgba(0, 123, 255, 0.8); /* Semi-transparent blue */
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    color: white;
    font-size: 0.9rem;
}

/* Navbar styles */
.navbar-brand {
    font-weight: bold;
}

.navbar .nav-link {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffcc00;
}

/* Main content styling */
main {
    margin-top: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 10px;
}

/* Profile page card styles */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

.card-title {
    font-weight: bold;
    color: #0056b3;
}

.list-group-item {
    background-color: #f9f9f9;
    border: none;
}

/* Gallery Page Styling */
img {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Contact form styles */
form .form-control {
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .navbar .nav-link {
        font-size: 0.9rem;
    }

    video {
        width: 100%;
    }

    main {
        padding: 10px;
    }
}
