/*
Theme Name: Atmosfer
Theme URI: https://atmosfer.com
Author: Atmosfer Team
Author URI: https://atmosfer.com
Description: WordPress theme for Atmosfer website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: atmosfer
*/

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: normal;
    padding-top: 80px; /* Space for fixed header */
}

/* Header Styles */
.site-header {
    background-color: #91d6f9;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1512px;
    gap: 10px;
}

.site-logo {
    height: 50px;
    width: 57px;
    flex-shrink: 0;
    position: relative;
}

.site-logo img,
.custom-logo-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
}

.custom-logo-link {
    display: block;
    height: 50px;
    width: 57px;
}

/* Navigation Menu */
.main-navigation {
    flex: 1;
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 0 175px;
    font-size: 32px;
    font-weight: 400;
    height: 32px;
}

.main-navigation ul,
.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 64px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}

.main-navigation a:hover {
    text-decoration: underline;
}

/* Main Content */
.site-main {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
}

/* Page Title */
.page-title {
    font-size: 64px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin: 55px auto 0;
    white-space: nowrap;
}

/* Content Image */
.content-image {
    width: 904px;
    height: 507px;
    margin: 112px auto 0;
    display: block;
    position: relative;
}

.content-image img,
.content-image .wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
}

/* Content Text */
.content-text,
.entry-content {
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    line-height: normal;
    width: 806px;
    margin: 29px auto 0;
    text-align: left;
}

.content-text p,
.entry-content p {
    margin-bottom: 0;
}

.content-text p:last-child,
.entry-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1512px) {
    .header-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .main-navigation {
        padding: 0 50px;
        gap: 40px;
        font-size: 28px;
    }
}

@media (max-width: 1200px) {
    .content-image {
        width: 90%;
        max-width: 904px;
        height: auto;
    }
    
    .content-text {
        width: 90%;
        max-width: 806px;
        font-size: 28px;
    }
    
    .page-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Adjust for mobile header */
    }
    
    .site-header {
        height: 70px;
        padding: 10px 20px;
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation {
        padding: 0 20px;
        gap: 30px;
        font-size: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-title {
        font-size: 36px;
        margin-top: 30px;
    }
    
    .content-image {
        margin-top: 40px;
    }
    
    .content-text {
        font-size: 24px;
        margin-top: 20px;
    }
}

