/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #333;
}
body, html {
    overflow-x: hidden;
}

/* Header */
.header {
    background: black;
    color: white;
    padding: 15px 50px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}
.header-content {
    width: 100%;
    margin: auto;
    position: relative;
    flex-wrap: wrap;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding-left: 200px;
    color: #DCA91E;
    font-size: 18px;
    cursor: pointer;
}


.logo {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.logo img {
    height: 96.03px;
    width: auto; /* Maintain aspect ratio */
    padding-right: 100px; /* Adjusted padding */
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid gray;
}
.email {
    font-size: 14px;
    margin-right: auto;
    flex-grow: 1;
    color: white;
}
.social-icons {
    display: flex;
    gap: 20px;
    margin-left: auto;
}
.social-icons a {
    padding-top: 6px;
    padding-left: 6px;
    width: 25px;
    height: 25px;
    color: white;
    font-size: 12px;
    text-decoration: none;
    background-color: #DCA91E;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex; /* Center the icon */
    align-items: center;
    justify-content: center;
}
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    width: 100%;
}
.login-button {
    background: #DCA91E;
    color: white;
    width: 100px;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-weight: bold;
    font-family: "Playfair Display", Sans-serif;
    font-style: italic;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    font-family: "Playfair Display", Sans-serif;
    text-align: left;
    padding: 50px 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-attachment: fixed;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    z-index: -1;
}
.hero h1 {
    font-size: 2.5em;
    margin: 0;
    margin-bottom: 5px;
    color: #DCA91E;
    font-style: italic;
    padding-left: 70px;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInTop 1.5s ease-out forwards;
}
.hero p {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1em;
    padding-left: 70px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInBottom 1.5s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 50px 20px;
}
.pricing h2 {
    color: #DCA91E;
    font-family: "Playfair Display", Sans-serif;
    font-size: 58px;
    font-weight: 800;
    font-style: italic;
}
.pricing-plans {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
.plan {
    display: block;
    background: #333;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 70%;
    text-align: left;
    align-items: center;
    margin-bottom: -30px;
    color: white;
}
.pricing-plans h3 {
    font-family: "Playfair Display", Sans-serif;
    font-style: italic;
    font-size: 61px;
    margin-bottom: 10px;
    padding-top: 0;
    padding-bottom: 30px;
    width: 100%;
    height: 60px;
    background-color: #000;
    color: white;
}
.pricing-info {
    color: white;
    font-size: 34px; /* Default size for larger screens */
    text-align: center; /* Default alignment for larger screens */
}
.plan .price {
    font-size: 1.5em;
    font-weight: 400;
    font-size: 32px;
    display: inline-flex;
}
.plan-text {
    width: 350px;
    text-align: left;
    padding-left: 300px;
}
.plan-text ol {
    list-style-type: disc; /* Solid bullet points */
    margin-bottom: 5px;
    color: white; /* Text color */
}
.plan-text h4 {
    margin-top: -10px;
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 5px;
}
.plan-text h5 {
    font-size: 40px;
    margin-bottom: 2px;
}
.plan button {
    background-color: #e4a313;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    margin-top: 2px;
    padding: 15px;
}

/* Style the link inside the button */
.plan button a {
    font-weight: bold;
    color: #333; /* Change to your desired text color */
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1em;
}

/* Optional: Change link color on hover */
.plan button a:hover {
    color: white; /* Change to desired hover color */
}

/* Footer */
.footer {
    background: black;
    color: white;
    padding: 40px 50px;
    text-align: left;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo img {
    width: 180px;
    margin-bottom: 10px;
}
.footer-social-icons {
    display: flex;
    gap: 15px;
}
.footer-social-icons a {
    background: gold;
    color: black;
    padding: 30px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin: 25px 0;
}
.footer-links ul li a {
    color: white;
    text-decoration: none;
}
.footer-contact p {
    margin: 3px 0;
}
hr {
    margin-top: 160px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    font-size: 14px;
}
.footer-bottom a {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 480px) {
    .header {
        flex-direction: row; /* Align elements in a row */
        justify-content: space-between; /* Space out children */
        padding: 10px 20px; /* Padding */
        height: 100px;
    }
    .logo {
        display: flex;
        align-items: center;
        margin-left: 15px;
    }
    .logo img {
        height: 40px; /* Adjust logo height */
        width: 70px;
        padding-right: 10px;
    }
    .login-button {
        padding: 5px 10px; /* Adjust padding for smaller screens */
    }
    .menu-toggle {
        width: 40px; /* Adjust width */
        display: block; /* Show menu toggle on small screens */
    }
    .header-content .top-bar {
        display: none; /* Hide the top bar on smaller screens */
    }
    .header-content .login-button {
        height: 10px;
        padding: 15px;
    }
    .hero {
        padding: 20px 10px; /* Adjust padding for mobile */
        height: 300px; /* Allow flexible height */
        background-attachment: scroll; /* Change to scroll for better mobile experience */
    }
    .hero h1 {
        font-size: 1.2em; /* Reduced font size for mobile */
        padding-left: 10px; /* Adjust padding */
        text-align: left;
    }
    .hero p {
        font-size: 144px; /* Adjusted font size */
        padding-left: 10px; /* Adjust padding */
        text-align: left;
    }
    .pricing {
        align-items: center;
        justify-content: center;
        display: block;
        padding: 20px 0; /* Add padding around pricing */
    }
    .pricing h2 {
        font-size: 36px; /* Reduced font size for h2 */
    }
    .nav-links {
        display: none; /* Hide the nav links on smaller screens */
        padding-top: 30px;
        flex-direction: column;
        align-items: baseline;
        gap: 30px;
    }
    .top-bar {
        
        display: none;
        flex-direction: column;
        align-items: center;
    }
    .bottom-bar {
        padding-left: 50px;
        flex-direction: column;
        align-items: center;
    }
    .pricing-plans {
        flex-direction: column; /* Stack plans vertically */
        align-items: center;
    }
    .plan {
        width: 90%; /* Adjust width for smaller screens */
    }
    .pricing-plans h3 {
        font-size: 36px; /* Reduced font size for h3 */
        width: 100%;
        padding-top: 0;
        padding-bottom: 10px;
    }
    .plan-text {
        text-align: left;
        padding: 0; /* Removed padding */
    }
    
    .footer-container {
        text-align: left;
        flex-direction: column; /* Stack footer content */
        align-items: baseline; /* Center align footer items */
    }
}

/* Additional Mobile Adjustments */
@media (max-width: 480px) {
    .hero {
        padding: 10px; /* Further reduce padding */
    }
    .hero h1 {
        font-size: 1.1em; /* Smaller font size */
    }
    .hero p {
        font-size: 38px; /* Smaller font size */
    }
    .pricing h2 {
        font-size: 20px; /* Smaller size for h2 */
    }
    .plan button {
        padding: 15px; /* Adjust padding on buttons */
    }
}
@media (max-width: 768px) {
    .pricing-info {
        color: white;
        font-size: 16px; /* Adjust the font size for small screens */
        text-align: center; /* Center the text to improve layout */
        padding-left: 10px; /* Add some padding to avoid edge collision */
        padding-right: 10px; /* Add padding on the right as well */
        line-height: 1.3; /* Adjust line height for better spacing */
    }
}




