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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #4A8B6F;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #F5C563;
}

.btn-etsy {
    background-color: #F5C563;
    color: #4A8B6F;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-etsy:hover {
    background-color: #E8B84E;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background-color: #E8E1D5;
    padding: 100px 20px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    animation: fadeIn 0.8s ease-out;
}

.logo-hero {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero .tagline {
    font-size: 18px;
    color: #4A8B6F;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #4A8B6F;
    color: white;
}

.btn-primary:hover {
    background-color: #36664F;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 139, 111, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4A8B6F;
    border: 2px solid #4A8B6F;
}

.btn-secondary:hover {
    background-color: #4A8B6F;
    color: white;
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #4A8B6F;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #4A8B6F;
    background-color: white;
    color: #4A8B6F;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #4A8B6F;
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: #F5C563;
}

.gallery-item-image-stack {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #E8E1D5 0%, #D9D0C7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.gallery-item-image-stack img {
    position: absolute;
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(74, 139, 111, 0.2);
}

.gallery-item-image-stack img:nth-child(1) {
    z-index: 3;
    border: 3px solid #ffffff;
}

.gallery-item-image-stack img:nth-child(2) {
    z-index: 2;
    transform: translateX(10px) translateY(10px) !important;
    border: 3px solid #F5C563;
}

.gallery-item-image-stack img:nth-child(3) {
    z-index: 1;
    transform: translateX(20px) translateY(20px) !important;
    border: 3px solid #4A8B6F;
}

.gallery-item-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-content {
    padding: 25px;
}

.gallery-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #4A8B6F;
    font-weight: 600;
}

.gallery-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.gallery-item .badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: #F5C563;
    color: #4A8B6F;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.gallery-item .btn-view {
    display: inline-block;
    color: #4A8B6F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 14px;
}

.gallery-item .btn-view:hover {
    color: #F5C563;
}

.gallery-item .portfolio-note {
    color: #999;
    font-size: 12px;
    font-style: italic;
}

.gallery-item.hidden {
    display: none;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background-color: #E8E1D5;
}

.social-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #4A8B6F;
}

.social-section > .container > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    color: #4A8B6F;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.social-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #F5C563;
}

.social-item h3 {
    color: #4A8B6F;
    margin-bottom: 15px;
    font-size: 22px;
}

.social-item iframe {
    border-radius: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #4A8B6F;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4A8B6F;
}

.contact-info p {
    margin-bottom: 20px;
    color: #666;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin: 15px 0;
}

.contact-details a {
    color: #4A8B6F;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #F5C563;
}

/* Contact Form */
.contact-form {
    background: #F0E9DD;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid #E8E1D5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4A8B6F;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E8E1D5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A8B6F;
    box-shadow: 0 0 8px rgba(74, 139, 111, 0.2);
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #4A8B6F;
    color: white;
    padding: 35px 0;
    text-align: center;
}

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

.footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #F5C563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .logo-hero {
        max-height: 300px;
        margin-bottom: 30px;
    }

    .hero .tagline {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-item-image-stack {
        height: 200px;
    }

    .gallery-item-image-stack img:nth-child(2) {
        transform: translateX(6px) translateY(6px) !important;
    }

    .gallery-item-image-stack img:nth-child(3) {
        transform: translateX(12px) translateY(12px) !important;
    }

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

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

    .footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo-hero {
        max-height: 250px;
    }

    .gallery-section h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
