/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-earth-dark: #2c2416;
    --color-earth-medium: #4a3d2a;
    --color-earth-light: #6b5d47;
    --color-earth-accent: #8b7355;
    --color-earth-lighter: #a68b6f;
    --color-text-primary: #e8e0d6;
    --color-text-secondary: #c9b8a3;
    --color-accent: #9d7a5a;
    --color-accent-dark: #7a5f45;
    --transition-base: 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--color-earth-dark) 0%, var(--color-earth-medium) 100%);
    color: var(--color-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background: rgba(44, 36, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--color-text-primary);
    font-weight: 600;
    margin: 0;
}

.main-nav {
    position: relative;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    margin-left: auto;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 900px;
}

.hero-content h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cloud Animation */
.cloud-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cloud-animation::before,
.cloud-animation::after {
    content: '';
    position: absolute;
    background: rgba(169, 169, 169, 0.3);
    border-radius: 50px;
    animation: cloudMove 20s infinite linear;
}

.cloud-animation::before {
    width: 200px;
    height: 60px;
    top: 20%;
    left: -200px;
    box-shadow: 
        50px 0 0 -10px rgba(169, 169, 169, 0.3),
        100px 0 0 -20px rgba(169, 169, 169, 0.3);
    animation-duration: 25s;
}

.cloud-animation::after {
    width: 150px;
    height: 50px;
    top: 50%;
    left: -150px;
    box-shadow: 
        40px 0 0 -8px rgba(169, 169, 169, 0.25),
        80px 0 0 -15px rgba(169, 169, 169, 0.25);
    animation-duration: 30s;
    animation-delay: -10s;
}

@keyframes cloudMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 300px));
    }
}

/* Snow Animation */
.snow-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.snow-animation::before,
.snow-animation::after {
    content: '❄';
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    animation: snowFall 10s infinite linear;
}

.snow-animation::before {
    left: 10%;
    animation-duration: 8s;
}

.snow-animation::after {
    left: 50%;
    animation-duration: 12s;
    animation-delay: -5s;
}

.snow-animation div {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    user-select: none;
}

@keyframes snowFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: calc(2rem + 80px);
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
}

/* Features Grid - Unique Layout */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.features-grid .feature-card {
    width: 100%;
}

@media (min-width: 600px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .features-grid .feature-card:nth-child(1) {
        grid-column: span 2;
    }
    
    .features-grid .feature-card:nth-child(2),
    .features-grid .feature-card:nth-child(3),
    .features-grid .feature-card:nth-child(4) {
        grid-column: span 1;
    }
}

.feature-card {
    background: rgba(74, 61, 42, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    min-width: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.feature-image {
    width: 100%;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    background: var(--color-earth-medium);
    flex-shrink: 0;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.feature-content h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    line-height: 1.3;
}

.feature-content p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: clamp(0.65rem, 2vw, 0.75rem) clamp(1.25rem, 3vw, 1.5rem);
    background: var(--color-accent);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: clamp(0.9rem, 2vw, 1rem);
    width: 100%;
    max-width: 250px;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 122, 90, 0.4);
}

@media (min-width: 480px) {
    .btn-primary {
        width: auto;
    }
}

/* Calendar Section */
.calendar-section {
    background: rgba(74, 61, 42, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.calendar-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.calendar-nav {
    background: var(--color-accent);
    border: none;
    color: var(--color-text-primary);
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calendar-nav:hover {
    background: var(--color-accent-dark);
    transform: scale(1.1);
}

.calendar-header h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--color-text-primary);
    text-align: center;
    flex-grow: 1;
    margin: 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.calendar-day {
    aspect-ratio: 1;
    background: rgba(107, 93, 71, 0.5);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    min-width: 0;
}

.calendar-day:hover {
    background: rgba(107, 93, 71, 0.8);
    border-color: var(--color-accent);
}

.calendar-day.weekday {
    background: rgba(74, 61, 42, 0.6);
    font-weight: 600;
    cursor: default;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
}

.calendar-day.weekday:hover {
    background: rgba(74, 61, 42, 0.6);
    border-color: transparent;
}

.calendar-day-number {
    font-size: clamp(0.75rem, 2vw, 1rem);
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.calendar-weather {
    font-size: 0.75rem;
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.weather-sunny {
    background: #f4a460;
}

.weather-cloudy {
    background: #8b9dc3;
}

.weather-rainy {
    background: #5f9ea0;
}

.weather-snowy {
    background: #e0e0e0;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.legend-color {
    width: clamp(16px, 3vw, 20px);
    height: clamp(16px, 3vw, 20px);
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-color.sunny {
    background: #f4a460;
}

.legend-color.cloudy {
    background: #8b9dc3;
}

.legend-color.rainy {
    background: #5f9ea0;
}

.legend-color.snowy {
    background: #e0e0e0;
}

/* Content Section */
.content-section {
    margin-bottom: 4rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.content-card {
    background: rgba(74, 61, 42, 0.5);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
}

.content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.content-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.content-card p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Gallery Section - Unique Masonry Layout */
.gallery-section {
    margin-bottom: 3rem;
    width: 100%;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: var(--color-earth-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
    width: 100%;
    min-width: 0;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.contact-info {
    background: rgba(74, 61, 42, 0.5);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.contact-info p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.contact-details {
    background: rgba(74, 61, 42, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: var(--color-accent);
}

.contact-note {
    background: rgba(139, 115, 85, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.contact-note p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-note a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

/* Forms */
.contact-form,
.consent-form {
    background: rgba(74, 61, 42, 0.4);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(107, 93, 71, 0.5);
    border: 2px solid rgba(139, 115, 85, 0.3);
    border-radius: 6px;
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(107, 93, 71, 0.7);
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Privacy Section */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: rgba(74, 61, 42, 0.4);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.privacy-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.consent-form-section {
    background: rgba(74, 61, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border: 2px solid var(--color-accent);
}

.consent-form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.consent-form-section > p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background: rgba(44, 36, 22, 0.95);
    padding: 2rem 1rem 1rem;
    margin-top: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

@media (min-width: 600px) {
    .main-footer {
        padding: 3rem 2rem 1rem;
        margin-top: 4rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .nav-toggle {
        display: flex;
        margin-left: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        flex-direction: column;
        background: rgba(44, 36, 22, 0.98);
        padding: 4rem 1rem 1rem;
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem;
        border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    }

    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        pointer-events: all;
    }

    .hero-section {
        min-height: 50vh;
        padding: 3rem 1rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .calendar-section {
        padding: 1rem;
        margin-bottom: 3rem;
    }

    .calendar-grid {
        gap: 0.3rem;
    }

    .calendar-legend {
        gap: 0.75rem;
    }

    .gallery-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .nav-toggle {
        margin-left: 0.5rem;
        padding: 0.5rem;
    }

    main {
        padding: 1rem;
        padding-top: calc(1rem + 70px);
    }

    .hero-section {
        padding: 2rem 1rem;
        min-height: 45vh;
        margin-bottom: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-content {
        padding: 1rem;
    }

    .feature-image {
        height: 180px;
        min-height: 180px;
    }

    .calendar-section {
        padding: 1rem;
        border-radius: 8px;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        padding: 0.2rem;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .btn-primary {
        max-width: 100%;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    main {
        padding: 0.75rem;
        padding-top: calc(0.75rem + 70px);
    }

    .hero-section {
        padding: 1.5rem 0.75rem;
        min-height: 40vh;
    }

    .calendar-section {
        padding: 0.75rem;
    }

    .calendar-grid {
        gap: 0.2rem;
    }

    .feature-content {
        padding: 0.75rem;
    }

    .feature-image {
        height: 150px;
        min-height: 150px;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    min-width: 300px;
    background: rgba(74, 61, 42, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-left: 4px solid var(--color-accent);
}

.notification-show {
    transform: translateX(0);
    opacity: 1;
}

.notification-hide {
    transform: translateX(120%);
    opacity: 0;
}

.notification-success {
    border-left-color: #4caf50;
}

.notification-success .notification-icon {
    color: #4caf50;
}

.notification-error {
    border-left-color: #f44336;
}

.notification-error .notification-icon {
    color: #f44336;
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.notification-message {
    flex-grow: 1;
    color: var(--color-text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
    line-height: 1;
}

.notification-close:hover {
    color: var(--color-text-primary);
    transform: scale(1.2);
}

@media (max-width: 480px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }
}

