:root{
    --primary:#ff874f;
}

.nav-logo{
    width: 200px;
    height: 50px;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #f8faff;
}

/* NAVBAR */
.navbar {
    background-color: var(--primary);
}

.newata{
    font-size: 40px;
    font-family: 'Poppins',sans-serif;
}

.com{
    font-size: 20px; 
    margin-top: 24px;
    font-family: 'Poppins',sans-serif;
}

/* HERO SECTION */
.hero-section {
    margin: 40px auto;
    border-radius: 10px;
    padding: 40px 30px;
    padding-left: 50px !important;
    box-shadow: 10px 10px 30px var(--primary);
    font-family: 'Poppins',sans-serif;
}

.hero-section img {
    max-width: 100%;
    border-radius: 10px;
}

/* COMMON */
.span{
    color: var(--primary);
}

.box-shadow{
    box-shadow: 10px 10px 30px var(--primary);
    border-radius: 10px;
}

.hover-up{
    transition: .3s;
}

.hover-up:hover{
    scale: .9;
}

/* FOOTER */
.footer {
    padding: 30px 20px;
    border-radius: 0 0 15px 15px;
    margin-top: 20px;
}

.footer h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.footer a {
    text-decoration: none;
    color: #000;
}

.footer a:hover {
    text-decoration: underline;
}

.subscribe-button {
    background-color: var(--primary) !important;
    border: none;
    color: #fff;
}

.subscribe-btn:hover {
    background: var(--primary);
}

.copyright-bar {
    padding: 10px 20px;
    border-radius: 0 0 15px 15px;
}

/* OWNER SECTION */
.owner-section {
    margin: 50px auto;
    text-align: center;
    width: 90%;
}

.owner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    max-width: 100%;
    margin: auto;
    animation: fadeInUp 1s ease;
}

/* Row on desktop */
.owner-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.owner-photo {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary);
}

.owner-details {
    flex: 1;
}

.owner-details h3 {
    margin: 10px 0 5px;
    color: #f56a27;
    font-size: 30px;
}

.role {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
}

.bio {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.live-sites {
    text-align: left;
    width: 100%;
}

.live-sites h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #f56a27;
}

.live-sites ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-sites li {
    margin: 8px 0;
}

.live-sites a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.live-sites a:hover {
    color: #f56a27;
    text-decoration: underline;
}

/* FORMS CSS STARTING FROM HERE */

/* REGISTER FORM */
.register-container {
    max-width: 450px;
    margin: 60px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 10px 10px 30px var(--primary);
    border-top: 5px solid #f56a27;
}

.register-container h2 {
    text-align: center;
    color: #f56a27;
    margin-bottom: 25px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.btn {
    width: 100%;
    padding: 12px;
    background: #f56a27;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #d8561d;
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #f56a27;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

/* LOGIN FORM */
.login-container {
    max-width: 400px;
    margin: 60px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 10px 10px 30px var(--primary);
    border-top: 5px solid #f56a27;
}

.login-container h2 {
    text-align: center;
    color: #f56a27;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.register-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.register-link a {
    color: #f56a27;
    text-decoration: none;
    font-weight: bold;
}

.register-link a:hover {
    text-decoration: underline;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px !important;
        margin: 20px auto;
    }

    .owner-info {
        flex-direction: column;
        text-align: center;
    }
}
