/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: #007bff;
    color: #ffffff;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Navigation Styles */
nav {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Marquee Styles */
marquee {
    background: #ffd700;
    color: #000;
    
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@font-face {
    font-family: 'MyCustomFont';
    src: url('fonts/rudawbold.ttf') format('ttf'),
         url('fonts/rudawbold.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/* Prices Section */
#prices {
    margin: 3rem auto;
    padding: 2rem 1rem;
    max-width: 1200px;
}

.price-table-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 2px solid #f1f1f1;
}

th {
    background: #007bff;
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}

tr:hover {
    background-color: #e9ecef;
}

/* Weather Section */
#weather {
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #6B8DD6 0%, #8E37D7 100%);
    border-radius: 2rem;
    width: 90%;
    max-width: 1200px;
}

.weather-container {
    text-align: center;
    color: white;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.weather-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.weather-icon {
    font-size: 3.5rem;
    margin: 1rem 0;
}

.temperature {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.weather-condition {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.weather-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.weather-stats i {
    margin-right: 0.5rem;
}

/* Upload Gallery Section */
#upload-gallery {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#upload-form {
    margin: 2rem 0;
    text-align: center;
}

#file-input {
    margin: 1rem 0;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.media-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
}

.media-item img, .media-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Map Section */
#map {
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#map iframe {
    height: 500px;
}

/* Visitor Counter */
#visitor-counter {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Footer Styles */
footer {
    background: #007bff;
    color: white;
    margin-top: 4rem;
    padding: 3rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-icon {
    animation: float 3s ease-in-out infinite;
}

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

    .weather-details {
        grid-template-columns: 1fr;
    }

    #weather {
        padding: 2rem 1rem;
        margin: 2rem auto;
        width: 95%;
    }

    .price-table-container {
        padding: 1rem;
    }

    #map iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    nav a {
        font-size: 1rem;
        padding: 0.5rem;
    }

    marquee {
        font-size: 1rem;
    }

    #map iframe {
        height: 300px;
    }

    .media-item img, .media-item video {
        height: 200px;
    }
}
