* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('backgroundimage.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;/* Extra height for the animated section */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: transparent;
    box-shadow: none;
}

.logo-svg {
    height: 60px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid black;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
}

.nav-links li a:hover {
    background-color: #00aced;
    color: white;
    transition: 0.3s;
}

.buy-now {
    background-color: #00aced;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    border: 2px solid black;
}

/* Main Section */
.main-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
}

/* Image Wrapper for the Title and Dawg Image */
.image-wrapper {
    position: relative;
    width: max-content;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 120px;
}

/* Position the title */
.title-svg {
    display: block;
    width: 500px;
    height: auto;
    z-index: 1;
}

/* Position the dawg image slightly hovering below the title */
.dawg-image {
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    height: auto;
    z-index: 2;
}

/* Frame Section */
.frame-section {
    position: relative;
    width: 100%;
    margin-top: 20px;
    overflow: hidden; /* Hide overflow to create the sliding effect */
}

/* Dawg Dawg Dawg image with animation */
.frame-image {
    width: 100%;
    animation: slide-in-out 10s infinite ease-in-out; /* 10 seconds duration, repeats infinitely */
}

@keyframes slide-in-out {
    0% {
        transform: translateX(-100%); /* Start off-screen from the left */
    }
    50% {
        transform: translateX(0); /* Center the image in view */
    }
    100% {
        transform: translateX(100%); /* Move off-screen to the right */
    }
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.9); /* Slight transparency for background */
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    margin: 50px auto;
    position: relative;
    text-align: left;
    font-family: 'Comic Sans MS', sans-serif;
}

.about-section h1 {
    text-align: center;
    font-size: 48px;
    color: #000;
    font-weight: bold;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text-content {
    width: 60%;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.bone-image {
    width: 30%;
}

.bone-image img {
    width: 130%;
    height: auto;
    display: block;
}

/* Contract Address Button */
.contract-address {
    margin-top: 20px;
}

.contract-address button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    border: 2px solid #000;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

.address-box {
    margin-top: 10px;
    padding: 10px;
    background-color: #00aced;
    border: 2px solid #000;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
    font-weight: bold;
    word-break: break-all;
}

/* Bottom $DAWG Banner */
.frame-section {
    position: relative;
    width: 100%;
    margin-top: 20px;
    overflow: hidden; /* Hide overflow to create the sliding effect */
}

.frame-image {
    width: 100%;
    animation: slide-in-out 10s infinite ease-in-out;
}

/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
    /* Adjust the body for mobile */
    body {
        padding: 0 10px;
        width: fit-content;
    }

    /* Adjust the navbar links */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        
        background-color: transparent;
        box-shadow: none;
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
    }

    .nav-links li a {
        padding: 8px 15px;
        font-size: 16px;
    }

    /* Adjust the title and image size */
    .title-svg {
        width: 80%; /* Make the title smaller for mobile */
    }

    .dawg-image {
        width: 40%;
        bottom: -150px;
    }

    /* Adjust the about section for mobile */
    .about-section {
        width: 90%;
        padding: 15px;
    }

    .about-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .text-content {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }

    .bone-image {
        width: 30%;
    }
    
    .bone-image img {
        width: 130%;
        height: auto;
        display: block;
    }
    .ghd {
        display: none;
    }
    .frddame {
        width: 200px; /* Adjust width as necessary */
        height: 200px; /* Maintain aspect ratio */
    }
    /* Adjust the contract address button */
    .contract-address button {
        width: 100%;
        font-size: 16px;
    }

    .address-box {
        font-size: 14px;
        padding: 10px;
    }

    /* Frame animation for smaller devices */
    .frame-image {
        width: 100%;
    }
}.how-to-buy-section {
    background-color: rgba(255, 255, 255, 0.9); /* White background for the section */
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    margin: 50px auto; /* Center the section */
    text-align: center; /* Center-align text */
    color: black; /* Change text color to black for visibility */
}

.step-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Base styles for step items */
.step-item {
    flex: 1; /* Flex grow for equal spacing */
    margin: 0 10px; /* Margin between items */
    padding: 4px; /* Padding inside the step item */
    font-weight: bold;
    border: 2px solid #000; /* Border around the item */
    border-radius: 10px; /* Rounded corners */
    background-color: rgba(255, 255, 255, 0.3); /* Default background color */
}

/* Custom styles for individual steps */
.step1 {
    background-color:#00aced; /* Light blue for step 1 */
    height: 120px;
    width: 30px; /* Custom height for step 1 */
}

.step2 {
    background-color: white; /* Light peach for step 2 */
    height: 120px; /* Custom height for step 2 */
}

.step3 {
    background-color: white; /* Light green for step 3 */
    height: 140px; /* Custom height for step 3 */
}

.step4 {
    background-color: #00aced; /* Light pink for step 4 */
    height: 160px; /* Custom height for step 4 */
}

.step5 {
    margin-top: -2%;
    background-color: #00aced; /* Light yellow for step 5 */
    height: 120px; /* Custom height for step 5 */
}

.step6 {
    background-color: white; /* Light yellow for step 5 */
    height: 120px; /* Custom height for step 5 */
}



.step-item h2 {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: left;
    margin-left: 20%;
}

.step-item p,
.step-item ul {
    font-size: 16px;
    line-height: 1.6;
}

.step-item ul {
    padding-left: 20px; /* Indent list items */
}

.step-item ul li {
    list-style-type: disc; /* Bullet points for list */
}
.dawg{
font-family: Comic-Art;
font-size: 34px;
font-weight: bold;
line-height: 61.7px;
margin-left: 80px;
text-align: left;
color: #004360;

}
.howto{
font-family: Comic-Art;
font-size: 58px;
font-weight: 7000;
line-height: 123.39px;
text-align: center;

}
.ghd {
    position: absolute; /* Position the image absolutely */
    top: 432%; /* Adjust this value to align it vertically with the About section */
    left: 7%; /* Align to the left of the parent container */
    transform: translateY(-70%); /* Center the image vertically based on its height */
    z-index: 1; /* Ensure it appears behind content */
}

.frddame {
    width: 200px; /* Adjust width as necessary */
    height: 200px; /* Maintain aspect ratio */
}
/* General Roadmap section */
.roadmap-section {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    width: 80%;
    margin: 20px auto;
    text-align: center;
}

.roadmap-title {
    font-family: 'Comic-Art', sans-serif;
    font-size: 64px;
    color: #000000;
    margin-bottom: 20px;
}

.roadmap-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Phases */
.roadmap-phase {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.left-phase {
    justify-content: flex-start;
}

.right-phase {
    justify-content: flex-end;
}

.phase-box {
    width: 50%;
    padding: 20px;
    border-radius: 20px;
    font-family: 'Comic-Art', sans-serif;
    color: #000;
    text-align: left;
    position: relative;
    border: 4px dashed #000000;
}


.blue-box {
    background-color: #00D3FF;
    border-color: #FFFFFF;
}

.white-box {
    background-color: #FFFFFF;
    border-color: #000000;
}

/* Phase Text */
.phase-box h3 {
    font-size: 12px;
    margin-bottom: 10px;
}

.phase-box ul {
    list-style-type: none;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.phase-box ul li::before {
    content: "•";
    color: #000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .phase-box {
        width: 80%;
    }

    .roadmap-phase {
        justify-content: center;
    }
}
.socials-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;  /* Background color similar to other sections */
}

.socials-section a {
    text-decoration: none;
    color: #000;
    font-family: 'Comic-Art', sans-serif;
    font-size: 24px;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #000;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.socials-section a:hover {
    background-color: #00aaff; /* Change color on hover */
}

.socii{
    text-align: center;
    color: #000;
    font-family: Arial;
    font-size: 30px;
}
.line-divider {
    position: absolute;
    width: 4px;  /* Adjust width as per the image */
    height: 100%;  /* Full height */
    top: 0;
    left: 50%; /* Center the line */
    transform: translateX(-50%);
    background-image: url('vector.png'); /* Your PNG image */
    background-repeat: no-repeat;
    background-size: contain;  /* Ensures it doesn't stretch */
    z-index: 1; /* Make sure it appears behind the boxes */
}
