/*
Theme Name: Marcel S.L.
Theme URI: https://arsnova.site
Author: ARS NOVA MARKETING
Author URI: https://arsnova.site
Description: A custom WordPress theme for Marcel S.L.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marcel-sl
*/

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #242424;
    color: #f8e9d1;
    padding:20px;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 80px;
    margin-right: 10px;
}

.header .logo .text {
    display:none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
}

.header .logo .text span {
    display: block;
    font-size: 14px;
    margin-top: 5px;
}

.header .nav {
    display: flex;
    align-items: center;
}

.header .nav a {
    text-decoration: none;
    margin-left: 20px;
    font-size: 19px;
    padding: 10px 20px;
    border-radius: 20px;
}

.header .nav .menu-icon {
    font-size: 24px;
    margin-left: 20px;
    cursor: pointer;
}

/* Hidden menu state */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background-color: #333;
    color: #f5f5f5;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
}

/* Active menu state */
.menu.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.menu .close-btn {
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    padding: 10px;
}

.menu .menu-list {
    list-style: none;
    padding: 20px;
    margin: 20px 20px;
}

.menu .menu-list li {
    margin-bottom: 20px;
}

.menu .menu-list li a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 19px;
    display: block;
}

.more-btn {
    background-color:#c9d1d3;
    border:0px;
    color:#242424;
}

.contact-btn {
    background-color:none;
    border:0px;
    color:#f8e9d1;
}

.content {
    display: flex;
    flex: 1;
    padding: 20px;
}

.content .text {
    flex: 1;
    padding-right: 20px;
}

.content .text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    margin: 0;
}

.content .text p {
    font-size: 23px;
    margin-top: 20px;
}

.content .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;  /* Smooth transition */
}

@media (max-width: 768px) {
    .content {
        flex-direction: column; /* Stack the content vertically */
    }

    .content .image {
        order: 2; /* Ensure the image comes after the text */
        width: 100%; /* Ensure the image takes up full width */
        margin-top: 20px; /* Add some spacing above the image */
    }
    
    .content .text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin: 0;
    }
    
    .more-btn {
    display:none;
    background-color:#c9d1d3;
    border:0px;
    color:#242424;
    }

}

.content .image img {
    max-width: 70%;
    border-radius: 10px;
}



