/* style.css - Custom Styles for Shell Helix Page */

/* Font Declarations */
@font-face {
    font-family: 'NeutrifPro';
    src: url('./fonts/NeutrifPro-SemiBold.ttf') format('truetype');
    font-weight: 500; /* SemiBold */
    font-style: normal;
}

@font-face {
    font-family: 'Shell';
    src: url('./fonts/Shell-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Shell';
    src: url('./fonts/Shell-Book.otf') format('opentype');
    font-weight: normal; /* Book is usually normal weight */
    font-style: normal;
}

@font-face {
    font-family: 'Shell';
    src: url('./fonts/Shell-Heavy.otf') format('opentype');
    font-weight: 700; /* Heavy */
    font-style: normal;
}

body {
    font-family: 'Shell', 'NeutrifPro', sans-serif; 
    background-color: #ffffff;
    padding-top: 76px;
    overflow-x: hidden;
}

.site-wrapper {
    
  width:80vw;
  max-width: 1400px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

main{
   
    margin:0 auto; 
    background-color: #eeedf2;
}

/* Hero Section Styling */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('images/shell-product-21.png');
   background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin:0 !important;
    padding: 0;
}

/* Positioning for the button - DESKTOP */
.hero-content-area {
    position: relative;
    margin-left: 5%;
    margin-top: 28%;
    text-align: left;
    width: auto;
    top: auto;
    transform: none;
}

.register-button {
    background-color: #ffcc00;
    border-color: #ffcc00;
    color: #333;
    padding: 15px 45px;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.register-button:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
    color: #333;
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Responsive adjustments for Hero Section */
@media (max-width: 991.98px) { /* Tablets */
    .hero-section {
        height: 60vh;
        background-size: cover;
        justify-content: center;
        align-items: center;
    }
    .hero-content-area {
        position: static;
        transform: none;
        text-align: center;
        width: 100%;
        padding: 0 15px;
        margin-left: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 767.98px) { /* Phones */
main{
    width:100vw; 
    margin:0 auto; 
    background-color: #eeedf2;
}
    .hero-section {
        height: 65vh;
        width:100%;
        background-image: url('images/shell-product-6-mobile.png');
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-color: #eeedf2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0 0 0 0 !important;;
        padding: 0;
        overflow:hidden;
    }

    .hero-section .container {
       height: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 5px;
        padding-bottom: 20px;
        margin-top: 50vh; /* Estimate image height: vw * aspect_ratio (e.g., 2:1 image, so 0.5) */
    }

    .hero-content-area {
        position: static;
        transform: none;
        text-align: center;
        width: 100%;
        padding: 0 20px;
        margin-top: 0;
        left: auto;
        top: auto;
        bottom: auto;
    }

    .register-button {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }
    body {
        padding-top: 66px;
    }
}

/* Footer Styling */
.footer {
  background-color: #333 !important; /* Keep if needed */
  color: #fff;
  font-size: 0.9rem;
  /*width: 80vw;Sets the width to 80% of the viewport */
  margin: 0 auto;
}
 @media (max-width: 767.98px) { /* Small devices (phones) */
.footer{
    width:100vw; 
    margin:0 auto; 
    
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-social .fab {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-social .fab:hover {
    color: #ffcc00;
}
