/* Reset default margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    /* Reference your image here */
    background-image: url('kubba-bg.jpg');
    
    /* This makes the image cover the full screen */
    height: 100vh; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3); /* Adds a slight dark tint so text is readable */
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #a52a2a; /* Matching the deep red in your packaging */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #7a1f1f;
}