/* Gybro App - Styling basert på logo-farger */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    min-height: 100vh;
    color: #3c2415;
    line-height: 1.6;
}

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

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3c2415;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tagline {
    font-size: 1.2rem;
    color: #5d4037;
    font-weight: 500;
    letter-spacing: 1px;
}

.domain {
    font-size: 1rem;
    color: #8d6e63;
    font-weight: 400;
    margin-top: 5px;
    font-style: italic;
}

/* Main content */
main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h2 {
    color: #3c2415;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 3px solid #f4d03f;
    padding-bottom: 10px;
}

h3 {
    color: #5d4037;
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

/* Content boxes */
.content-box {
    background: rgba(244, 208, 63, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid #f4d03f;
}

/* Lists */
ul {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin: 8px 0;
    color: #4a3429;
}

/* Links */
a {
    color: #8d6e63;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

a:hover {
    color: #3c2415;
    text-decoration: underline;
}

/* Contact section */
.contact-box {
    background: rgba(244, 208, 63, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 15px 0;
}

.contact-info {
    margin: 20px 0;
}

.contact-item {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-item strong {
    color: #3c2415;
    display: inline-block;
    min-width: 100px;
}

/* Contact form */
.contact-form {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 25px;
}

.form-group {
    margin: 20px 0;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3c2415;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #f4d03f;
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
    color: #3c2415;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
    color: #5d4037;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .contact-item strong {
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 15px;
    }
}
