/* The Look Design System - Extracted from Next.js Clone */
/* Home Staging & Interior Design Theme */

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
    /* Colors */
    --color-background: #ffffff;
    --color-foreground: #262626;

    --color-primary: #262626;
    --color-primary-foreground: #ffffff;

    --color-secondary: #f1eee6;
    --color-secondary-foreground: #262626;

    --color-muted: #f1eee6;
    --color-muted-foreground: #9e927a;

    --color-accent: #9e927a;
    --color-accent-foreground: #ffffff;

    --color-border: #e0e0e0;
    --color-input: #e0e0e0;

    --color-taupe: #9e927a;
    --color-beige: #f1eee6;
    --color-overlay: rgba(38, 38, 38, 0.7);

    /* Fonts */
    --font-display: "Playfair Display", serif;
    --font-sans: "Montserrat", sans-serif;

    /* Spacing */
    --section-padding-y: 80px;
    --container-max-width: 1200px;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
.font-serif {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 32px;
    letter-spacing: 1px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 1rem;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

/* ============================================
   NAVIGATION LINKS
   ============================================ */
.nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-decoration: none;
    color: var(--color-foreground);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-taupe);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: var(--color-beige);
    color: var(--color-foreground);
}

.btn-secondary:hover {
    background-color: var(--color-taupe);
    color: var(--color-accent-foreground);
}

/* ============================================
   FORMS
   ============================================ */
.input-field {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--color-taupe);
}

textarea.input-field {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   UTILITY BAR (TOP BAR)
   ============================================ */
.utility-bar {
    background-color: var(--color-beige);
    font-size: 12px;
    font-weight: 400;
    padding: 8px 0;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-foreground);
    text-decoration: none;
    padding: 1rem 0;
    display: inline-block;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--color-taupe);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.desktop-nav li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 12px;
    font-weight: 600;
}

.dropdown-menu a:hover {
    background-color: var(--color-beige);
    color: var(--color-taupe);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-foreground);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    width: 100%;
    background-color: var(--color-beige);
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 12px;
    color: var(--color-foreground);
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--color-foreground);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-taupe);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-taupe);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left,
    .footer-right {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   QUOTE TEXT
   ============================================ */
.quote-text {
    font-style: italic;
    font-size: 16px;
    color: var(--color-foreground);
    line-height: 1.8;
}

/* ============================================
   IMAGE UTILITIES
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}