@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --sage-green: #9CAF88;
    --warm-beige: #F5F1E8;
    --terracotta: #C97D60;
    --matte-black: #2C2C2C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--matte-black);
    background-color: var(--warm-beige);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-align: center;
}
p{
    padding-left: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terracotta);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background-color: var(--warm-beige);
    padding: 1rem 0;
    min-height: 70px;
    box-shadow: 0 2px 10px rgba(44, 44, 44, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-green);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    font-weight: 400;
    padding: 0.5rem 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--matte-black);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--warm-beige);
    box-shadow: 0 4px 10px rgba(44, 44, 44, 0.1);
    padding: 1rem 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 1rem;
}

.mobile-nav ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

section {
    margin: 2rem 0;
    padding: 0 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--warm-beige) 100%);
    padding: 4rem 1rem;
    text-align: center;
    margin: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--matte-black);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--terracotta);
    color: white;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--sage-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 125, 96, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
}

.btn-secondary:hover {
    background-color: var(--terracotta);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.1);
    margin-bottom: 1rem;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.8s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.1);
    margin: 0 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--terracotta);
}

form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--sage-green);
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

footer {
    background-color: var(--matte-black);
    color: white;
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    text-align: left;
}

.footer-column h3 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--sage-green);
    text-align: left;
}

.footer-column p {
    margin-bottom: 0.75rem;
    padding-left: 0;
    color: var(--warm-beige);
}

.footer-column a {
    color: var(--warm-beige);
}

.footer-column a:hover {
    color: var(--terracotta);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--warm-beige);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--terracotta);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--warm-beige);
    padding-left: 0;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.3);
    border-radius: 8px;
    z-index: 10000;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup h3 {
    margin-bottom: 1rem;
}

.privacy-popup p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.privacy-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-buttons .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.content-section {
    padding: 3rem 0;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2 {
    color: var(--sage-green);
    margin-bottom: 1.5rem;
}

.text-content h3 {
    color: var(--terracotta);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-content p {
    margin-bottom: 1rem;
}

.text-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.text-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    body {
        hyphens: auto;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    nav ul {
        display: none;
    }
    .mobile-nav ul {
        display: flex;
    }
    .btn-secondary{
        margin-top: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .privacy-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 2rem 0.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

.policy-page {
    padding-left: 1rem;
    padding-right: 1rem;
}

