body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e8f4f8;
    color: #1a3a3a;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(26, 58, 58, 0.25);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-accent {
    background-color: #5a8a99;
    color: white;
    border: 2px solid #5a8a99;
    border-radius: 4px;
    padding: 10px 24px;
    transition: all 200ms ease;
    text-decoration: none;
    display: inline-block;
}

.btn-accent:hover {
    background-color: #4a7a89;
    border-color: #4a7a89;
    transform: scale(1.035);
    text-decoration: none;
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.035);
}

.origin-card {
    background: white;
    border: 1px solid #d0e8ed;
    border-radius: 8px;
    transition: all 200ms ease;
    box-shadow: 0 2px 4px rgba(90, 138, 153, 0.05);
}

.origin-card:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 12px rgba(90, 138, 153, 0.15);
}

.tile-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d0e8ed;
    transition: all 200ms ease;
    cursor: pointer;
}

.tile-card:hover {
    transform: scale(1.035);
    box-shadow: 0 8px 20px rgba(90, 138, 153, 0.15);
}

.tile-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
}

.tile-card:hover .tile-image {
    opacity: 1;
}

.note-box {
    background: white;
    border-left: 3px solid #5a8a99;
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 200ms ease;
}

.note-box:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 8px rgba(90, 138, 153, 0.1);
}

.rite-card {
    transition: all 200ms ease;
}

.rite-card:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 12px rgba(90, 138, 153, 0.15);
}

.product-card {
    background: white;
    border: 1px solid #d0e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: all 200ms ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: scale(1.035);
    box-shadow: 0 8px 24px rgba(90, 138, 153, 0.2);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    transition: opacity 200ms ease;
}

.product-card:hover .product-image {
    opacity: 1;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.harmony-box {
    transition: all 200ms ease;
}

.harmony-box:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 12px rgba(90, 138, 153, 0.15);
}

.law-box {
    transition: all 200ms ease;
}

.law-box:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 12px rgba(90, 138, 153, 0.15);
}

.faq-item {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #d0e8ed;
    transition: all 200ms ease;
}

.faq-item:hover {
    transform: scale(1.035);
    box-shadow: 0 4px 12px rgba(90, 138, 153, 0.15);
}

.cookie-banner {
    background-color: #1a3a3a;
    color: white;
    padding: 15px 0;
    border-top: 2px solid #5a8a99;
    position: relative;
    z-index: 100;
}

.cursor-pointer {
    cursor: pointer;
}

.aether-origin {
    background-color: #f5f9fa;
}

.quick-tiles {
    background-color: #f0f8fa;
}

.purity-rites {
    background-color: #f5f9fa;
}

.eternal-laws {
    background-color: #f0f8fa;
}

.quick-notes {
    background-color: #e8f4f8;
}

.transcendent-showcase {
    background-color: white;
}

.sky-harmony {
    background-color: white;
}

.divine-cta {
    background: linear-gradient(135deg, #5a8a99 0%, #4a7a89 100%);
    color: white;
    padding: 60px 20px;
}

footer {
    background-color: #1a3a3a;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

a {
    color: #5a8a99;
    text-decoration: none;
}

a:hover {
    color: #4a7a89;
    text-decoration: underline;
}

.form-control {
    border: 1px solid #b8d4d8;
    border-radius: 4px;
    padding: 10px;
    transition: border-color 200ms ease;
}

.form-control:focus {
    border-color: #5a8a99;
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 138, 153, 0.1);
}

.navbar-brand {
    transition: all 200ms ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: #5a8a99!important;
}

.img-fluid {
    transition: transform 200ms ease;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 350px;
    }

    h1 {
        font-size: 1.8rem!important;
    }

    h2 {
        font-size: 1.5rem!important;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .cookie-banner .row {
        flex-direction: column;
    }

    .cookie-banner .text-md-right {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 300px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .tile-image {
        height: 150px;
    }

    .origin-card {
        margin-bottom: 15px;
    }
}

textarea {
    resize: vertical;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    box-sizing: border-box;
}

.border-light {
    border-color: #d0e8ed!important;
}

.text-balance {
    text-wrap: balance;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: slideDown 300ms ease-out;
}
