/* Greater Theory Font for main heading */
@font-face {
    font-family: 'Greater Theory';
    src: url('https://fonts.cdnfonts.com/s/98742/GreaterTheory-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Dolce Vita Heavy Font for subheading */
@font-face {
    font-family: 'Dolce Vita Heavy';
    src: url('https://fonts.cdnfonts.com/s/18847/DolceVitaHeavyBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Cocogoose Classic Font for CTA */
@font-face {
    font-family: 'Cocogoose Classic';
    src: url('https://fonts.cdnfonts.com/s/15377/CocogooseProRegular-trial.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

html {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Full Screen Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('backgrond.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

/* Add blue overlay to match original if needed */
.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(86, 144, 199, 0.15);
    z-index: 2;
}

/* Logo - Top Left */
.logo {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 1000;
}

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

/* Content Wrapper - Overlaid on Background */
.content-wrapper {
    position: relative;
    z-index: 100;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
}

.content-inner {
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

/* Main Heading - Perfectly Centered */
.main-heading {
    font-family: 'Greater Theory', 'Impact', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #000000;
    letter-spacing: -2px;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 auto 35px;
    text-align: center;
}

/* Subheading - Perfectly Centered */
.subheading {
    font-family: 'Dolce Vita Heavy', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.8px;
    line-height: 1.6;
    margin: 0 auto 45px;
    text-transform: uppercase;
    max-width: 900px;
    text-align: center;
}

/* CTA Heading - Perfectly Centered */
.cta-heading {
    font-family: 'Cocogoose Classic', 'Arial Black', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0 auto 30px;
    text-transform: uppercase;
    text-align: center;
}

/* Email Form - Perfectly Centered */
.email-form {
    max-width: 540px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.email-input {
    width: 100%;
    padding: 20px 25px;
    font-size: 16px;
    border: none;
    border-radius: 0;
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 0;
    text-align: left;
}

.email-input::placeholder {
    color: #000000;
    font-weight: 400;
    opacity: 1;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}

.submit-btn {
    width: 100%;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    background-color: #000000;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Cocogoose Classic', 'Arial Black', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0;
}

.submit-btn:hover {
    background-color: #333333;
    transform: scale(1.02);
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Messages - Perfectly Centered */
.success-message,
.error-message {
    padding: 15px 25px;
    margin: 0 auto 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    max-width: 540px;
    text-align: center;
}

.success-message {
    background-color: #4CAF50;
    color: white;
}

.error-message {
    background-color: #f44336;
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-heading {
        font-size: 64px;
    }
    
    .cta-heading {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .main-heading {
        font-size: 56px;
    }
    
    .cta-heading {
        font-size: 44px;
    }
    
    .subheading {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .logo {
        top: 30px;
        left: 30px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .content-wrapper {
        padding: 100px 30px 50px;
    }
    
    .main-heading {
        font-size: 48px;
        letter-spacing: -1.5px;
        margin-bottom: 30px;
    }
    
    .cta-heading {
        font-size: 38px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    
    .subheading {
        font-size: 12px;
        margin-bottom: 35px;
    }
    
    .email-form {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .logo {
        top: 20px;
        left: 20px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .content-wrapper {
        padding: 90px 20px 40px;
    }
    
    .main-heading {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 25px;
    }
    
    .cta-heading {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    
    .subheading {
        font-size: 11px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .email-input,
    .submit-btn {
        padding: 16px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 32px;
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .subheading {
        font-size: 10px;
    }
    
    .email-input,
    .submit-btn {
        padding: 15px 18px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .main-heading {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .logo img {
        height: 26px;
    }
}
