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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: white;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 24px;
    font-weight: 400;
    color: black;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.main-text {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
}

.footer-text {
    font-size: 16px;
    color: rgb(41, 41, 41);
    font-weight: 400;
}

.whiskey {
    /* Whiskey glass emoji uses natural colors */
}

.careers-link {
    color: black;
    text-decoration: none;
}

.careers-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .logo {
        height: 32px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .main-text {
        font-size: 24px;
    }
    
    .footer {
        padding: 20px;
    }
    
    .footer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 15px;
    }
    
    .logo {
        height: 28px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .main-text {
        font-size: 20px;
        padding: 0 20px;
    }
}
