/* 
   Samttasche Luxury Design System
   No universal selector (*) used.
   All styles applied via specific .st- classes.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --st-bg: #F9F7F2;
    --st-text: #1A1A1A;
    --st-primary: #C5A059;
    --st-primary-hover: #B48E47;
    --st-secondary: #4A4A4A;
    --st-white: #FFFFFF;
    --st-border: #E5E1D8;
    --st-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --st-transition: all 0.3s ease;
    --st-container-padding: 20px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--st-bg);
    color: var(--st-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Utilities */
.st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--st-container-padding);
}

.st-section {
    padding: 80px 0;
}

.st-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.st-flex-wrap {
    flex-wrap: wrap;
}

.st-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.st-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .st-grid-2, .st-grid-3 {
        grid-template-columns: 1fr;
    }
    .st-flex {
        flex-direction: column;
    }
}

/* Typography Classes */
.st-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: var(--st-text);
}

.st-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: var(--st-text);
}

.st-h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.st-p {
    font-size: 1.1rem;
    margin: 0 0 20px 0;
    color: var(--st-secondary);
    font-weight: 400;
}

.st-p-small {
    font-size: 0.9rem;
    color: var(--st-secondary);
    margin: 0 0 10px 0;
}

.st-text-center {
    text-align: center;
}

.st-accent-text {
    color: var(--st-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Link & Button Classes */
.st-nav-link {
    text-decoration: none;
    color: var(--st-text);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--st-transition);
}

.st-nav-link:hover {
    color: var(--st-primary);
}

.st-btn {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--st-text);
    color: var(--st-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--st-transition);
    border: none;
    cursor: pointer;
}

.st-btn:hover {
    background-color: var(--st-primary);
    transform: translateY(-2px);
}

.st-btn-outline {
    background-color: transparent;
    border: 1px solid var(--st-text);
    color: var(--st-text);
}

.st-btn-outline:hover {
    background-color: var(--st-text);
    color: var(--st-white);
}

.st-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--st-primary);
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
}

.st-price-uvp {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.st-top-bar {
    background-color: #f0f0f0;
    color: #666;
    padding: 10px 0;
    text-align: center;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--st-border);
}

/* Header */
.st-header {
    background-color: var(--st-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.st-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.st-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--st-text);
    text-transform: lowercase;
    letter-spacing: -1px;
}

.st-nav {
    display: flex;
    gap: 30px;
}

.st-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.st-hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--st-text);
    transition: var(--st-transition);
}

.st-nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--st-white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.st-nav-mobile.active {
    right: 0;
}

.st-nav-mobile .st-nav-link {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.st-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.st-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.st-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.st-hero {
    background-color: var(--st-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.st-hero-img {
    width: 100%;
    max-width: 600px;
    border-radius: 0;
    box-shadow: var(--st-shadow);
}

/* Card & Content Components */
.st-card {
    background-color: var(--st-white);
    padding: 40px;
    border: 1px solid var(--st-border);
    transition: var(--st-transition);
}

.st-card:hover {
    box-shadow: var(--st-shadow);
}

.st-ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.st-li {
    padding: 10px 0;
    border-bottom: 1px solid var(--st-border);
    font-size: 1rem;
    color: var(--st-secondary);
}

.st-li:last-child {
    border-bottom: none;
}

/* Footer */
.st-footer {
    background-color: #111;
    color: #FFF;
    padding: 80px 0 40px 0;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .st-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.st-footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.st-footer-link {
    color: #AAA;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--st-transition);
}

.st-footer-link:hover {
    color: var(--st-primary);
}

.st-disclosure {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Tables */
.st-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.st-th {
    background-color: #EEE;
    padding: 15px;
    text-align: left;
    border: 1px solid var(--st-border);
}

.st-td {
    padding: 15px;
    border: 1px solid var(--st-border);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .st-grid-2, .st-grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .st-h1 { font-size: 2.5rem; }
    .st-h2 { font-size: 1.8rem; }
    
    .st-section {
        padding: 60px 0;
    }
}

@media (max-width: 600px) {
    .st-h1 { font-size: 1.8rem; line-height: 1.2; }
    .st-h2 { font-size: 1.5rem; line-height: 1.2; }
    .st-h3 { font-size: 1.2rem; }
    
    .st-header .st-container {
        padding: 10px 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .st-logo-text {
        font-size: 1.4rem;
    }
    
    .st-nav {
        display: none;
    }
    
    .st-hamburger {
        display: flex;
        padding: 5px;
    }
    
    .st-section {
        padding: 40px 0;
    }

    .st-btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 10px;
        padding: 15px 20px;
    }
    
    .st-hero-img {
        margin-top: 20px;
    }

    .st-card {
        padding: 25px;
    }

    blockquote {
        font-size: 1.2rem !important;
    }

    .st-top-bar {
        font-size: 0.7rem;
        padding: 8px 10px;
        line-height: 1.3;
    }
}

.st-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Animations */
.st-fade-in {
    animation: fadeIn 1.2s ease forwards;
}

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