/* UhrenElite - Global Design System */
/* Using only class selectors as per requirement */

.global-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header & Navigation */
.nav-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: #003366;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo-accent {
    color: #ff5500;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: block;
}

.nav-link {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #003366;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #003366;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation (optional) */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Affiliate Disclosure */
.disclosure-bar {
    background-color: #f0f4f8;
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 8px 10px;
    border-bottom: 1px solid #e1e8ed;
}

/* Hero Section */
.hero-section {
    background-color: #001a33;
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    background-color: #ff5500;
    color: white;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    color: #cbd5e0;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #ff5500;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    margin-left: 15px;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #001a33;
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #001a33;
}

/* Content Blocks */
.content-block {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003366;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-text {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.content-list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.content-list-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff5500;
    font-weight: 900;
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
}

.table-header-row {
    background-color: #f8f9fa;
}

.table-header {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #003366;
    border-bottom: 2px solid #e1e8ed;
}

.table-row {
    border-bottom: 1px solid #e1e8ed;
}

.table-cell {
    padding: 15px;
    color: #4a4a4a;
}

.table-cell-highlight {
    font-weight: 700;
    color: #003366;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #003366;
    display: block;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 10px;
}

/* Footer */
.footer-main {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column {
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* Forms & Contact */
.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: #003366;
}

.form-input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.form-textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1500;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        font-weight: 700;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}
