/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Sections */
section {
    padding: var(--section-padding) 0;
    max-width: 100vw;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 100%;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(87, 62, 48, 0.95);
    backdrop-filter: blur(10px);
    z-index: var(--z-navigation);
    padding: var(--space-sm) 0;
    transition: transform var(--transition-base);
}

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

.logo {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    z-index: 10;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 100%;
    height: 2px;
    background-color: var(--color-lightest);
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background-color: var(--color-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    transition: right var(--transition-base);
    padding: var(--space-xl);
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-size: var(--text-xl);
    font-weight: 500;
    letter-spacing: var(--tracking-heading);
    color: var(--color-lightest);
    transition: color var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-light);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    bottom: -50%;
    background-image:
        linear-gradient(135deg, rgba(87, 62, 48, 0.3), rgba(150, 126, 107, 0.2)),
        url('../images/hero/hero-background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, rgba(87, 62, 48, 0.6));
    z-index: -1;
}

.hero-content {
    padding: var(--space-xl) var(--space-xl) var(--space-2xl);
    color: var(--color-lightest);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    max-height: 100vh;
}

.monogram-decoration {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    opacity: 0.9;
}

.monogram-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-subtitle {
    font-size: var(--text-xl);
    letter-spacing: var(--tracking-body);
    margin-bottom: var(--space-2xl);
    color: var(--color-lightest);
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary {
    margin-top: var(--space-3xl);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-lightest);
    opacity: 0.7;
}

.scroll-text {
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-body);
    margin-bottom: var(--space-xs);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-lightest), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Grid Layouts */
.services-grid,
.gallery-grid {
    display: grid;
    gap: var(--space-lg);
    max-width: 100%;
}

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

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

/* About Section */
.about {
    background-color: var(--color-surface);
}

.about-content {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

/* Services Section */
.services {
    background-color: var(--color-lightest);
}

/* Contact Section */
.contact {
    background-color: var(--color-surface);
}

.contact-wrapper {
    display: grid;
    gap: var(--space-2xl);
}

.contact-details {
    margin-top: var(--space-xl);
}

.contact-item {
    margin-bottom: var(--space-lg);
}

.contact-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: var(--tracking-body);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
}

.contact-link {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-primary);
}

/* Feedback Section */
.feedback {
    background-color: var(--color-light);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-lightest);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 100%;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    overflow-x: hidden;
}

.footer-link,
.social-link {
    font-size: var(--text-xs);
    letter-spacing: 0.02em;
    opacity: 0.9;
    transition: opacity var(--transition-base);
    white-space: nowrap;
}

.footer-link:hover,
.social-link:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(223, 213, 201, 0.2);
    text-align: center;
}

.copyright {
    font-size: var(--text-xs);
    opacity: 0.7;
    letter-spacing: 0.02em;
}
