/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold-primary: #D4AF37;
    --gold-dark: #b89326;
    --gold-light: rgba(212, 175, 55, 0.15);
    --text-main: #2C1E16;
    --text-muted: #5e473b;
    --bg-light: #FAF6F0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 10px 30px rgba(44, 30, 22, 0.08);
    --shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Subtle background gradient to give depth */
    background-image: linear-gradient(135deg, #FAF6F0 0%, #E8DFD3 100%);
    min-height: 100vh;
}

/* Typography styles */
h1, h2, h3, .tagline, .brand-name {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

/* Background Pattern Overlay */
.pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    /* Extremely subtle patterned noise or SVG. Here using a repeating radial gradient for a fabric-like texture effect */
    background-image: radial-gradient(var(--gold-primary) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.15;
}

/* Layout Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Glassmorphism Panel Class */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-primary), var(--gold-light));
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.logo-container {
    width: 250px;
    max-width: 100%;
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    z-index: -1;
    transition: transform 0.4s ease;
}

.image-wrapper:hover .image-accent {
    transform: translate(10px, 10px);
}

.owner-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    aspect-ratio: 1 / 1; 
    /* The photo might not be square, but we'll adapt depending on layout */
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* --- Social Section --- */
.social {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social h2 {
    font-size: 2.2rem;
}

.social p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-main);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-btn .icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: color 0.3s ease;
}

/* Platform specific colors */
.facebook::before { background: #1877f2; }
.facebook .icon { color: #1877f2; }

.instagram::before { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.instagram .icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.tiktok::before { background: #000000; }
.tiktok .icon { color: #000000; text-shadow: 1px 1px 0px #ff0050, -1px -1px 0px #00f2fe; }

.whatsapp::before { background: #25d366; }
.whatsapp .icon { color: #25d366; }

/* Hover Effects */
.social-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover .icon {
    color: #fff;
    text-shadow: none;
    background: none;
    -webkit-text-fill-color: initial;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .glass-panel {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations that are triggered by JS classes */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
