/* Base Styles for Ruma */
:root {
    --primary-color: #FF6B35; /* Orange - primary brand color */
    --primary-dark: #E85A2D; /* Darker orange for hover states */
    --primary-light: #FF8B5F; /* Lighter orange for accents */
    --secondary-color: #3B82F6; /* Blue as secondary color */
    --accent-color: #10B981; /* Green accent */
    --text-color: #333333;
    --text-light: #555555;
    --text-muted: #777777;
    --bg-color: #FFFFFF;
    --bg-light: #F5F7FA;
    --bg-lighter: #F9FAFB;
    --bg-dark: #EEEEEE;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --gradient-orange: linear-gradient(135deg, #FF6B35, #E85A2D);
    --gradient-blue: linear-gradient(135deg, #3B82F6, #2563EB);
    --gradient-green: linear-gradient(135deg, #10B981, #059669);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.025em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    letter-spacing: 0.25px;
    position: relative;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-orange);
    color: white;
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.5), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.5), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.3);
}

.btn-outline:hover {
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
    background-color: rgba(255, 107, 53, 0.05);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

.btn .fas {
    margin-right: 0.5rem;
    font-size: 0.875em;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 100;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 72px;
    width: auto;
    margin-right: 0;
}

.logo span {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.nav-links .btn {
    margin-left: 0.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: #FAF5F0;
    color: var(--text-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero .bg-circle-1 {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #E1F3F0;
    border-radius: 50%;
    top: -50px;
    left: 10%;
    z-index: 1;
    opacity: 0.7;
}

.hero .bg-circle-2 {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #F8D0B0;
    border-radius: 50%;
    bottom: -50px;
    right: 5%;
    z-index: 1;
    opacity: 0.4;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .brand-name {
    color: var(--primary-color);
}

.hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
}

.hero-content .hero-subtext {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.video-btn:hover {
    color: var(--primary-dark);
}

.video-btn i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #C3E8E0;
    border-radius: 50%;
    top: -20px;
    right: 30%;
    z-index: 1;
    opacity: 0.6;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #F8D0B0;
    border-radius: 50%;
    bottom: 10%;
    left: 15%;
    z-index: 1;
    opacity: 0.6;
}

.hero .tree-1 {
    position: absolute;
    width: 40px;
    height: 70px;
    bottom: 15%;
    left: 25%;
    z-index: 1;
}

.hero .tree-1::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #5D9C7D;
    border-radius: 50%;
    top: 0;
    left: 0;
}

.hero .tree-1::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 30px;
    background-color: #8B6E5D;
    bottom: 0;
    left: 16px;
}

/* House decorations */
.hero .house-1 {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #E5F8F3;
    bottom: 15%;
    left: 15%;
    z-index: 1;
    clip-path: polygon(0% 100%, 100% 100%, 100% 40%, 50% 0%, 0% 40%);
}

.hero .house-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #F8D0B0;
    bottom: 20%;
    right: 10%;
    z-index: 1;
    clip-path: polygon(0% 100%, 100% 100%, 100% 40%, 50% 0%, 0% 40%);
    opacity: 0.7;
}

/* Features Section */
.features {
    background-color: #FAF5F0;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}





.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.5rem;
}

.visitor-icon {
    background-color: #E97451;
}

.payment-icon {
    background-color: #D83F31;
}

.dashboard-icon {
    background-color: #3B82F6;
}

.admin-icon {
    background-color: #10B981;
}

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

.feature-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333333;
}

.feature-card p {
    position: relative;
    z-index: 1;
    color: #666666;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0;
}







/* CTA Section */
.cta {
    background: #FAF5F0;
    color: #333333;
    text-align: center;
    padding: 5rem 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.02);
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    color: #666666;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
}

.cta .btn-primary {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #F8F4EE;
    color: #333333;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #F8D0B0 100%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
    padding-right: 2rem;
}

.footer-brand .logo span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-brand p {
    color: #666666;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #666666;
    transition: var(--transition);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: #666666;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #666666;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F0EAE2;
}

.social-links a:hover {
    color: white;
    background-color: var(--primary-color);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content, .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .testimonial-slider {
        scroll-snap-type: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}
