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























/* Introduction Section */
.intro-section {
    background: var(--bg-light);
}

.intro-section .section-title {
    color: var(--text-dark);
}

.intro-section .section-subtitle {
    color: #666;
}

/* Uniqueness Section */
.uniqueness-section {
    background: var(--text-light);
}

.uniqueness-section .section-title {
    color: var(--text-dark);
}

.uniqueness-section .section-subtitle {
    color: #666;
}

/* Originality Section */
.originality-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.originality-section .section-title {
    color: var(--text-light);
}

.originality-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Synthesis Section */
.synthesis-section {
    background: var(--text-light);
}

.synthesis-section .section-title {
    color: var(--text-dark);
}

.synthesis-section .section-subtitle {
    color: #666;
}

/* Special Lighting Section */
.lighting-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.lighting-section .section-title {
    color: var(--text-light);
}

.lighting-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Formation Section */
.formation-section {
    background: var(--text-light);
}

.formation-section .section-title {
    color: var(--text-dark);
}

.formation-section .section-subtitle {
    color: #666;
}

/* Room Section */
.room-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.room-section .section-title {
    color: var(--text-light);
}

.room-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Title Section */
.title-section {
    background: var(--text-light);
}

.title-section .section-title {
    color: var(--text-dark);
}

.title-section .section-subtitle {
    color: #666;
}

/* Dedication Section */
.dedication-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.dedication-section .section-title {
    color: var(--text-light);
}

.dedication-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Guarantees Section */
.guarantees-section {
    background: var(--text-light);
}

.guarantees-section .section-title {
    color: var(--text-dark);
}

.guarantees-section .section-subtitle {
    color: #666;
}

/* Implementation Section */
.implementation-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.implementation-section .section-title {
    color: var(--text-light);
}

.implementation-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

/* Investments Section */
.investments-section {
    background: var(--text-light);
}

.investments-section .section-title {
    color: var(--text-dark);
}

.investments-section .section-subtitle {
    color: #666;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
    opacity: 0.8;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Uniqueness Section */
.uniqueness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.uniqueness-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.uniqueness-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.uniqueness-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.uniqueness-item p {
    color: #666;
    line-height: 1.6;
}

/* Originality Section */
.originality-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.originality-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
    font-weight: 300;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Synthesis Section */
.synthesis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.synthesis-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.synthesis-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.synthesis-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.synthesis-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.synthesis-item p {
    color: #666;
    line-height: 1.6;
}

/* Formation Section */
.formation-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.formation-item:nth-child(even) {
    direction: rtl;
}

.formation-item:nth-child(even) > * {
    direction: ltr;
}

.formation-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
}

.formation-item h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.formation-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.languages {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.formation-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

.formation-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: block;
}

.formation-images img:hover {
    transform: scale(1.05);
}

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

.title-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-dark);
    position: relative;
}

.title-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.title-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.title-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

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

/* Guarantees Section */
.guarantees-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantees-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 200;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Modes Section */
.modes-section {
    background: var(--text-light);
}

.modes-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.modes-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    font-weight: 200;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
}

.modes-image img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

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

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

.investment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.investment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.investment-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.investment-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.investment-item p {
    opacity: 0.8;
    line-height: 1.6;
}

.download-section {
    text-align: center;
    margin-top: 60px;
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.download-btn:hover {
    background: #c49564;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}



/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    

    

    
    .header-top {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .formation-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .formation-item:nth-child(even) {
        direction: ltr;
    }
    
    .title-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .uniqueness-grid,
    .synthesis-grid,
    .investments-grid {
        grid-template-columns: 1fr;
    }

    .formation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .formation-item {
        margin-bottom: 30px;
    }
    
    .formation-content {
        padding: 25px;
    }
    
    .formation-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .formation-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .formation-images {
        margin-top: 20px;
    }
    
    .formation-images img {
        height: 200px;
        border-radius: 6px;
    }
    
    /* Section adjustments */
    .content-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    /* Image adjustments */
    .hero-image {
        height: 300px;
    }
    
    .formation-images {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Text adjustments */
    .formation-content ul {
        padding-left: 20px;
    }
    
    .formation-content li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    /* Room section adjustments */
    .room-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-info h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }
    
    .room-info p {
        font-size: 0.9rem;
    }
    
    .room-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 80px;
    }
    
    .formation-item {
        gap: 30px;
    }
    
    .formation-images img {
        height: 200px;
    }

    .formation-grid {
        margin-top: 30px;
    }
    
    .formation-item {
        margin-bottom: 20px;
    }
    
    .formation-content {
        padding: 20px;
    }
    
    .formation-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: var(--text-dark);
    }
    
    .formation-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .formation-images {
        margin-top: 15px;
    }
    
    .formation-images img {
        height: 180px;
        border-radius: 4px;
    }
    
    /* Section adjustments */
    .content-section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .intro-text {
        font-size: 0.85rem;
        line-height: 1.4;
        font-weight: 300;
        opacity: 0.8;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Hero adjustments */
    .hero-image {
        height: 250px;
    }
    
    .formation-images {
        gap: 10px;
    }
    
    /* Text adjustments */
    .formation-content ul {
        padding-left: 15px;
    }
    
    .formation-content li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    /* Room section adjustments */
    .room-content {
        gap: 20px;
    }
    
    .room-info h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .room-info p {
        font-size: 0.85rem;
    }
    
    .room-image {
        height: 200px;
    }
    
    /* Dedication section adjustments */
    .dedication-content {
        padding: 30px 20px;
    }
    
    .dedication-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }
    
    .dedication-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Guarantees section adjustments */
    .guarantees-content {
        padding: 25px 15px;
        text-align: center !important;
    }
    
    .guarantees-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: var(--text-dark);
    }
    
    .guarantees-content ul {
        padding-left: 15px;
        text-align: left;
    }
    
    .guarantees-content li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    /* Implementation section adjustments */
    .implementation-content {
        padding: 25px 15px;
        text-align: center !important;
    }
    
    .implementation-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: var(--text-dark);
    }
    
    .implementation-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        font-weight: 200;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Investments section adjustments */
    .investments-content {
        padding: 25px 15px;
        text-align: center !important;
    }
    
    .investments-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        color: var(--text-dark);
    }
    
    .investments-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        font-weight: 200;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}



/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        width: auto;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        width: auto;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .intro-text {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .originality-text {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .guarantees-content {
        text-align: center !important;
    }
    
    .guarantees-content p {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .modes-content p {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .implementation-content {
        text-align: center !important;
    }
    
    .implementation-content p {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .investments-content {
        text-align: center !important;
    }
    
    .investments-content p {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}
