* {
    padding: 0;
    margin: 0;
}

/* Global Styles */
body {
    color: #f6f6f6;
    background: #9FC3D1 url("ellibeachlogo.jpg") 50% 50% no-repeat fixed;
    background-size: cover;
    height: 100%;
    padding-top: 70px;
    font-family: "Roboto", sans-serif;
    padding-bottom: 100px;

}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 25px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 999;
}

.top-header a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
}

.top-header a:hover {
    color: #7ab5d3;
}
.section-content{
    padding: 40px 0;
}
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;

}

/* Panorama specific */
#map {
    height: calc(100vh - 120px);
    width: 100%;
    background: #000;
}





.page-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    text-align: center;
}

.page-footer a {
    color: white;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
}

/* Weather Section */
.section-weather {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: center;
}

.weather-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.weather-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 10px;
    display: block;
}

.weather-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.weather-value {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.weather-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes drift {
    0% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(-5px);
    }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-spin-slow {
    animation: spin 8s infinite linear;
}

.animate-drift {
    animation: drift 4s infinite ease-in-out;
}

.section-content {
    text-align: center;
    margin-bottom: 40px;
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    filter: grayscale(0.6);
}