/* 
   Style Sheet for MaFe Unhas
   Identity: Elegance, Luxury, Minimalism
   Palette: Rose Gold, Soft Pink, Warm Beige, Charcoal & Gold Details
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Color Palette */
    --color-bg-primary: #FFF9F9;
    --color-bg-secondary: #FAF2F2;
    --color-text-main: #332A2A;
    --color-text-muted: #6E5F5F;
    --color-primary: #C48F93; /* Old Rose / Soft Burgundy */
    --color-primary-light: #E8CCD0;
    --color-primary-dark: #A36B70;
    --color-gold: #D4AF37;
    --color-gold-light: #EED786;
    --color-white: #FFFFFF;
    
    /* Fonts */
    --font-title: 'Playfair Display', serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 40px rgba(196, 143, 147, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(196, 143, 147, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

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

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

.section {
    padding: 100px 0;
}

/* Navigation Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 249, 249, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 143, 147, 0.1);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

header .logo {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 1px;
}

header .logo span {
    color: var(--color-primary);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

header nav ul a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
}

header nav ul a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

header nav ul a:hover {
    color: var(--color-primary);
}

header nav ul a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #FFF9F9 0%, #FAF2F2 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 143, 147, 0.1) 0%, rgba(255, 249, 249, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 550px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    font-style: italic;
    color: var(--color-primary-dark);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(196, 143, 147, 0.3);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-text-main);
    border: 1px solid rgba(196, 143, 147, 0.2);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-3px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-border {
    position: relative;
    width: 420px;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    border: 8px solid var(--color-white);
}

.hero-image-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-image-border:hover img {
    transform: scale(1.05);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 420px;
    height: 480px;
    border: 2px solid var(--color-gold);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    pointer-events: none;
}

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

.about .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    border: 6px solid var(--color-white);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

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

.about-instagram-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 1rem;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 4px;
}

.about-instagram-cta:hover {
    color: var(--color-text-main);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(196, 143, 147, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary-light);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-gold) 100%);
    height: 6px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary-dark);
    background-color: var(--color-bg-secondary);
    border-radius: 50%;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: auto;
}

/* Contact & Info Section */
.info-section {
    background-color: var(--color-bg-secondary);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.info-card-content h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.info-card-content p {
    font-size: 0.95rem;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 6px solid var(--color-white);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer styling */
footer {
    background-color: #231C1C;
    color: #FAF2F2;
    padding: 60px 0 30px;
    text-align: center;
}

footer .logo {
    font-family: var(--font-title);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

footer .logo span {
    color: var(--color-primary-light);
}

footer p {
    color: #A39696;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FAF2F2;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.admin-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #A39696;
    opacity: 0.5;
}

.admin-link:hover {
    opacity: 1;
    color: var(--color-primary-light);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    color: var(--color-white);
    font-size: 2.2rem;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20BA5A;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    .hero-title { font-size: 2.8rem; }
    .hero .grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { margin-top: 40px; }
    
    .about .grid { grid-template-columns: 1fr; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .about-text h2 { text-align: center; }
    .about-text h2::after { left: 50%; transform: translateX(-50%); }
    
    .info-grid { grid-template-columns: 1fr; }
    .map-wrapper { min-height: 300px; }
}

@media (max-width: 768px) {
    header .nav-links {
        display: none; /* Hide standard nav */
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-image-border, .hero-image-wrapper::after {
        width: 100%;
        max-width: 320px;
        height: 380px;
    }
    .section {
        padding: 60px 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    h1, .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}
