/*
Theme Name: Goldene Ente
Theme URI: https://keymmedia.vn/
Description: Theme cho nhà hàng Goldene Ente - phát triển bởi KEYM Media
Author: KEYM Media
Author URI: https://keymmedia.vn/
Version: 1.0.0
Text Domain: goldene-ente
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
}

body,
input,
textarea,
button,
select {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 28px;
}

/* Container */
#page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.site-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* Header - Hidden */
.site-header {
    display: none;
}

/* Main Content */
#content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
    background: #f8fafc;
    padding: 0px;
    border-radius: 8px;
    overflow: visible;
}

.site-main .site-container {
    height: 100%;
}

/* Footer */
.site-footer {
    background: #2d3748;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    flex-shrink: 0;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
}




/* Responsive */
@media (max-width: 768px) {
    .site-header .site-container {
        flex-direction: column;
        gap: 15px;
    }

    .site-title {
        font-size: 24px;
    }

    .site-main {
        padding: 0px;
    }


}