* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Fullscreen Background Hero */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/background.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
}

/* Top Left Logo Container */
.top-left-logo {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 160px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Top Right Action Buttons */
.top-right-buttons {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    gap: 12px;
}

.action-btn {
    background: white;
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background 0.2s;
}

.action-btn:hover {
    background: #f0f0f0;
}

/* Center Content */
.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    margin-bottom: 20px;
}

.cta-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(4px);
}

.cta-subtitle {
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    background-color: #ff6600;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background 0.2s;
}

.cta-button:hover {
    background-color: #e05b00;
}

/* Bottom Partner Grid */
.partners-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
}

.partner-card {
    background: white;
    color: #333;
    border-radius: 8px;
    width: 155px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    padding: 5px;
    text-align: center;
}

/* Strict sizing so the Carnival logo stays neat inside its box */
.partner-img {
    max-width: 120px;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-card span {
    font-size: 0.75rem;
    font-weight: bold;
    color: #444;
    margin-top: 3px;
}
