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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #2c2c2c;
}

h3 {
    font-size: 1.5rem;
    color: #3c3c3c;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    color: #8b7355;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #6b5a47;
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
    font-style: italic;
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: #495057;
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8b7355;
    background: rgba(139, 115, 85, 0.1);
    text-decoration: none;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #8b7355;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 0;
    font-style: italic;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.3);
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #c8b99c, #d4c5a9);
    top: 50%;
    right: 20%;
    animation-delay: 2s;
    box-shadow: 0 15px 30px rgba(200, 185, 156, 0.4);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f1ede4, #e8e0d1);
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
    box-shadow: 0 10px 20px rgba(241, 237, 228, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: #ffffff;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.article-header {
    background: linear-gradient(135deg, #8b7355 0%, #a68b5b 100%);
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.article-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 15px;
}

.article-content {
    padding: 3rem 2rem;
    line-height: 1.8;
}

.article-content h2 {
    color: #8b7355;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    border-bottom: 2px solid rgba(139, 115, 85, 0.2);
    padding-bottom: 0.5rem;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    color: #495057;
}

.article-content strong {
    color: #8b7355;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.section:nth-child(even) {
    background: rgba(139, 115, 85, 0.03);
}

.section-title {
    text-align: center;
    color: #8b7355;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 300;
}

.section-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    color: #6c757d;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b7355, #a68b5b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #8b7355;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #8b7355;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(139, 115, 85, 0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .shape-1 {
        width: 150px;
        height: 150px;
    }

    .shape-2 {
        width: 100px;
        height: 100px;
    }

    .shape-3 {
        width: 80px;
        height: 80px;
    }

    .article-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-visual {
        height: 250px;
    }

    .shape-1 {
        width: 120px;
        height: 120px;
    }

    .shape-2 {
        width: 80px;
        height: 80px;
    }

    .shape-3 {
        width: 60px;
        height: 60px;
    }
}

/* Smooth Animations */
.section {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Enhanced Visual Effects */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.blog-article {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
}

/* Daisy Grey Accent Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(200, 185, 156, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Additional Visual Enhancements */
.article-content a {
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    position: relative;
}

.article-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-content a:hover::after {
    transform: scaleX(1);
}

/* Scroll Indicator */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #8b7355, transparent);
    animation: scroll-indicator 2s ease-in-out infinite;
}

@keyframes scroll-indicator {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }
}

