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

/* Background and layout styling */
body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.background {
    background-image: url('../images/BG_mochi.png'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
}

/* Centered "Coming Soon" text */
.center-text {
    font-size: 120px;
    color: white;
    font-weight: bold;
    text-align: center;
    position: absolute;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Add shadow */
    font-family: 'Bangers', sans-serif;
    letter-spacing: 10px;
}

/* Subtitle styling */
.subtitle {
    font-size: 60px;
    color: white;
    font-weight: 300;
    margin-top: 4px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5); /* Subtle shadow for subtitle */
    font-family: 'Barriecito', sans-serif;
    letter-spacing: 1px;
}

/* Logo styling */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
}

/* Twitter icon styling */
.twitter-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 30px;
    cursor: pointer;
}

/* Button container */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* Link-styled buttons */
.buy-now-button,
.telegram-button {
    padding: 14px 50px;
    border: none;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    margin: 0 10px;
    font-family: 'Bangers', sans-serif;
    text-decoration: none; /* Remove underline */
    color: white;
    display: inline-block; /* Make links behave like buttons */
    letter-spacing: 2px;
}

.buy-now-button {
    background-color: #4CAF50; /* Green color for Buy Now */
}

.telegram-button {
    background-color: #0088cc; /* Blue color for Telegram */
}

/* Contract Address Bar */
.contract-bar {
    background-color: #0088cc; /* Blue color */
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 20px;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Bangers', sans-serif;
}

.contract {
    font-weight: 700;
}

/* Two-Column Section Styling */
.two-column-section {
    display: flex;
    padding: 50px 10%;
    align-items: center;
    gap: 0px; /* Space between columns */
}

.column-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.left-image {
    max-width: 60%; /* Full width within the column */
    height: auto;
    border-radius: 8px;
}

.column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Align text closer to the image */
    padding: 0 20px;
}

.section-title {
    font-size: 70px;
    color: #333;
    font-family: 'Bangers', sans-serif;
    margin-bottom: 10px;
    text-align: left;
}

.section-text {
    font-size: 25px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    text-align: left;
}

.section-title2 {
    font-size: 70px;
    color: #ffffff;
    font-family: 'Bangers', sans-serif;
    margin-bottom: 10px;
    text-align: left;
}

.section-text2 {
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #4CAF50; /* Green button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 24px;
    font-family: 'Bangers', sans-serif;
    cursor: pointer;
    margin-top: 10px;
}

.cta-button:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}

/* Two-Column Section Styling */
.two-column-section2 {
    display: flex;
    padding: 50px 10%;
    align-items: center;
    gap: 0px; /* Space between columns */
    background-image: url('/images/bg2.png'); /* Replace with your image path */
    background-size: cover; /* Make the image cover the entire section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    border-radius: 8px; /* Optional rounded corners */
    margin: 20px 0; /* Spacing between sections */
    color: white; /* Text color to ensure readability on background */
}