:root {
    --terracotta: #C17156;
    --sage: #9EB09E;
    --cream: #F5F1E9;
    --peach: #F2C9B1;
    --old-gold: #B6A269;
    --dark-text: #4A4A4A;
    --light-text: #FFFFFF;
    
    --font-script: 'Dancing Script', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --container-width: 1100px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png'); /* Subtle paper texture */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, .tagline {
    font-weight: 700;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--terracotta);
    margin-bottom: 2rem;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--old-gold);
    margin-bottom: 0.5rem;
}

.text-center {
    text-align: center;
}

/* Header & Nav */
header {
    background-color: rgba(245, 241, 233, 0.9);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav-logo {
    height: 50px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--old-gold);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(rgba(245, 241, 233, 0.8), rgba(245, 241, 233, 0.8)), url('painel_bg.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.tagline {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--light-text);
    border: 2px solid var(--terracotta);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--terracotta);
}

.btn-outline {
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--terracotta);
    color: var(--light-text);
}

/* About Section */
.about {
    padding: 6rem 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.image-wrapper {
    position: relative;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: rotate(2deg);
}

.brand-img {
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: rgba(158, 176, 158, 0.1);
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.gift-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.gift-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.gift-info {
    padding: 1.5rem;
}

.gift-info h4 {
    font-family: var(--font-serif);
    color: var(--terracotta);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Features */
.features {
    padding: 6rem 0;
    display: flex;
    justify-content: space-around;
    background-color: var(--cream);
}

.feature-item {
    max-width: 300px;
}

.monogram {
    display: inline-block;
    padding: 10px 15px;
    border: 2px solid var(--old-gold);
    color: var(--old-gold);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--terracotta);
}

/* Footer */
footer {
    background-color: var(--terracotta);
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--peach);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    font-size: 1.4rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--cream);
    color: var(--terracotta);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
}

/* Instagram Feed */
.instagram-feed {
    padding: 6rem 0;
    background-color: var(--cream);
    border-top: 1px solid rgba(158, 176, 158, 0.2);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.insta-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.05);
}

/* Responsiveness */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .gift-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .tagline {
        font-size: 2rem;
    }
}
