/* ========================================
   SOS TOITURE - STYLESHEET PREMIUM
   Design: Luxe & Excellence Artisanale
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cormorant+Garamond:wght@300;400;600;700&family=Cinzel:wght@400;600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-light: #F3D676;
    --gold-dark: #B8941F;
    --dark: #0a0a0a;
    --dark-grey: #1a1a1a;
    --darker-grey: #121212;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --gray: #888;
    --light-gray: #cccccc;
    --border-gold: rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: rgba(10, 10, 10, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 8%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo img {
    height: 85px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    font-family: 'Cinzel', serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.burger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.burger div {
    width: 30px;
    height: 3px;
    background: var(--gold);
    margin: 6px 0;
    transition: all 0.3s;
}

/* ========================================
   HERO SECTIONS
======================================== */

.hero-service {
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero-home {
    height: 100vh;
    margin-top: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-content .text-gold {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
======================================== */

.btn-gold {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    transition: left 0.4s;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ========================================
   SECTIONS
======================================== */

.section-title-center {
    text-align: center;
    padding: 100px 5% 60px;
}

.section-title-center h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-center .divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

.section-title-center p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 100px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.text-block {
    color: var(--gray);
    font-size: 1.15rem;
}

.text-block h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.2;
}

.text-block p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-block ul {
    list-style: none;
    margin: 30px 0;
}

.text-block ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.text-block ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    border: 5px solid var(--border-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
}

.image-box img:hover {
    transform: scale(1.02);
}

/* ========================================
   SERVICES GRID
======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 5% 100px;
}

.service-card {
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--darker-grey) 100%);
    padding: 50px 35px;
    border: 1px solid var(--border-gold);
    transition: all 0.4s;
    text-align: center;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.service-card i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
    transition: all 0.4s;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--gold-light);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   FEATURES / ADVANTAGES
======================================== */

.features-section {
    padding: 100px 5%;
    background: var(--darker-grey);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.feature-item i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   GALLERY
======================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 0 5% 100px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.8) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    padding: 80px 5%;
    background: var(--dark-grey);
    text-align: center;
}

.cta-section .section-title-center {
    padding: 0;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 15px auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bg-light {
    background: var(--dark-grey);
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    padding: 100px 5%;
    background: var(--darker-grey);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--dark-grey);
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-info {
    padding: 60px 40px;
    border-right: 1px solid var(--border-gold);
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item div h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.info-item div p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-container {
    padding: 60px 40px;
}

.contact-form-container h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--light-gray);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--darker-grey);
    border: 1px solid #333;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   FOOTER
======================================== */

footer {
    background: #000;
    padding: 60px 5% 30px;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-section p,
.footer-section ul {
    color: var(--gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
}

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
}

/* ========================================
   UTILITY CLASSES
======================================== */

.text-gold {
    color: var(--gold);
}

.bg-dark {
    background: var(--dark);
}

.bg-darker {
    background: var(--darker-grey);
}

/* ========================================
   RESPONSIVE
======================================== */

@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .content-section {
        gap: 50px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px 5%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        width: 70%;
        max-width: 300px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        border-left: 1px solid var(--border-gold);
        gap: 30px;
    }
    
    .nav-active {
        transform: translateX(0);
    }
    
    .burger {
        display: block;
    }
    
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .burger.toggle .line2 {
        opacity: 0;
    }
    
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5%;
    }
    
    .section-title-center {
        padding: 60px 5% 40px;
    }
    
    .section-title-center h2 {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--border-gold);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title-center h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ANIMATIONS
======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade {
    animation: fadeIn 1s ease;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease;
}
