* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sand-light: #f5f1e8;
    --sand-medium: #e8ddd4;
    --sand-dark: #d4c4b0;
    --sand-accent: #c9b89a;
    --text-dark: #3a3a3a;
    --text-light: #666;
    --white: #ffffff;
    --blue-light: #e6f2ff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-medium) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--sand-accent);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--sand-accent);
}

.header-icons {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Cloud Animation */
.cloud-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    opacity: 0.6;
    animation: cloudMove 20s infinite linear;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: -100px;
    animation-duration: 25s;
}

.cloud-1:before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 10px;
}

.cloud-1:after {
    width: 60px;
    height: 40px;
    top: -15px;
    right: 10px;
}

.cloud-2 {
    width: 120px;
    height: 50px;
    top: 40%;
    left: -120px;
    animation-duration: 30s;
    animation-delay: 5s;
}

.cloud-2:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud-2:after {
    width: 70px;
    height: 50px;
    top: -20px;
    right: 15px;
}

.cloud-3 {
    width: 90px;
    height: 35px;
    top: 60%;
    left: -90px;
    animation-duration: 35s;
    animation-delay: 10s;
}

.cloud-3:before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 8px;
}

.cloud-3:after {
    width: 55px;
    height: 35px;
    top: -12px;
    right: 8px;
}

@keyframes cloudMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

/* Wind Animation */
.wind-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.wind-animation::before,
.wind-animation::after {
    content: '💨';
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: windMove 15s infinite linear;
}

.wind-animation::before {
    top: 30%;
    left: -50px;
    animation-delay: 0s;
}

.wind-animation::after {
    top: 70%;
    left: -50px;
    animation-delay: 7.5s;
}

@keyframes windMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(50vw) translateY(-20px);
    }
    100% {
        transform: translateX(100vw) translateY(0);
    }
}

/* Sun Animation */
.sun-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sun {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffd700 0%, #ffed4e 50%, #ffa500 100%);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.4);
    animation: sunPulse 4s ease-in-out infinite;
}

.sun::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: sunRays 3s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes sunRays {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

/* Animated Cards */
.animated-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animated-card:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-card:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-card:nth-child(3) {
    animation-delay: 0.3s;
}

.animated-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: 6rem 0;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sand-accent) 0%, var(--sand-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-secondary {
    background: var(--white);
    color: var(--sand-accent);
    border: 2px solid var(--sand-accent);
}

.btn-secondary:hover {
    background: var(--sand-accent);
    color: var(--white);
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
    padding: 4rem 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--sand-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: var(--sand-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Weather Alert Section */
.weather-alert {
    padding: 3rem 0;
    background: var(--blue-light);
}

.alert-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.alert-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Parks Section */
.parks-section {
    padding: 4rem 0;
    background: var(--white);
}

.parks-grid {
    display: grid;
    gap: 3rem;
}

.park-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: var(--sand-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.park-card:hover {
    transform: translateY(-5px);
}

.park-image {
    overflow: hidden;
}

.park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.park-content {
    padding: 2rem;
}

.park-content h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.park-features {
    list-style: none;
    margin-top: 1rem;
}

.park-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Weather Section */
.weather-section {
    padding: 4rem 0;
    background: var(--white);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.weather-card {
    background: var(--sand-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.weather-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.weather-info {
    margin: 1rem 0;
}

.temperature {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
}

.condition {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.wind,
.humidity {
    font-size: 0.9rem;
    color: var(--text-light);
}

.weather-status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.weather-status.good {
    background: #d4edda;
    color: #155724;
}

.weather-status.moderate {
    background: #fff3cd;
    color: #856404;
}

/* Weather Warnings */
.weather-warnings {
    padding: 4rem 0;
    background: var(--sand-light);
}

.warnings-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.warning-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 5px solid;
}

.warning-card.warning-low {
    border-color: #ffc107;
}

.warning-card.warning-info {
    border-color: #17a2b8;
}

.warning-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.warning-time {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Forecast Section */
.weather-forecast {
    padding: 4rem 0;
    background: var(--white);
}

.forecast-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.forecast-day {
    background: var(--sand-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.forecast-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.forecast-temp {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

/* Recommendations Section */
.recommendations-section {
    padding: 4rem 0;
    background: var(--white);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.recommendation-card {
    background: var(--sand-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-5px);
}

.recommendation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.recommendation-card h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.recommendation-card ul {
    list-style: none;
    padding-left: 0;
}

.recommendation-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.recommendation-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sand-accent);
    font-weight: bold;
}

/* Interactive Tips */
.interactive-tips {
    padding: 4rem 0;
    background: var(--sand-light);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--sand-accent);
    box-shadow: 0 10px 25px var(--shadow);
}

.tip-card.active {
    background: var(--sand-light);
    border-color: var(--sand-accent);
}

.tip-content {
    margin-top: 1rem;
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tip-card.active .tip-content {
    max-height: 500px;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin: 2rem 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--sand-light);
    border-radius: 10px;
    border-left: 4px solid var(--sand-accent);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-message h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-message p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-message .btn-primary {
    margin-top: 1rem;
    display: inline-block;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand-medium);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--sand-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

/* Privacy Section */
.privacy-section {
    padding: 4rem 0;
    background: var(--white);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.privacy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

/* Form Section */
.form-section {
    max-width: 600px;
    margin: 0 auto;
    background: var(--sand-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.form-section h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--sand-medium);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sand-accent);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--sand-dark) 0%, var(--sand-accent) 100%);
    padding: 3rem 0 1rem;
    color: var(--text-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-medium) 100%);
        box-shadow: 0 5px 15px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .nav.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 20px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
        text-align: left;
        width: 100%;
    }

    .nav-list a.active::after {
        display: none;
    }

    .nav-list a.active {
        background-color: var(--sand-accent);
        color: var(--white);
        padding-left: 1rem;
        border-radius: 5px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .park-card {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-message {
        margin-top: 2rem;
    }

    .contact-message p {
        margin-bottom: 2rem;
    }

    .contact-message .btn-primary {
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
        display: block;
    }

    .form-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h2,
    .page-header h1 {
        font-size: 1.5rem;
    }

    .features-grid,
    .gallery-grid,
    .weather-grid {
        grid-template-columns: 1fr;
    }
}

