﻿/* =========================================================
   HARE SRINIVASA — MODERN FOUNDATION CSS
========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f6f2ea;
    color:#2f2f2f;
    overflow-x:hidden;
    line-height:1.7;
}


/* =========================================================
   ROOT COLORS
========================================================= */

:root{

    --bg-main:#f6f2ea;
    --bg-card:#ffffff;

    --brown:#6d4322;
    --brown-dark:#4e2f17;

    --gold:#d7b97c;
    --gold-light:#f3e5c4;

    --text:#3b3b3b;
    --muted:#777;

    --shadow:
        0 10px 30px rgba(0,0,0,0.08);

    --radius:28px;
}


/* =========================================================
   NAVBAR
========================================================= */

.nav-menu{

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(248,244,236,0.96)
        );

    backdrop-filter:blur(12px);

    border-bottom:
        1px solid rgba(120,90,50,0.08);

    padding:18px 0;

    z-index:9999;
}


/* NAV CONTAINER */


/* BRAND */

.navbar-brand{

    display:flex;
    align-items:center;
    gap:16px;

    text-decoration:none !important;
}

/* =========================================================
   LEGACY STYLE.CSS OVERRIDES
========================================================= */

.nav-menu.is-scrolling,
.nav-menu.menu-is-open{

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.98),
            rgba(248,244,236,.98)
        ) !important;

    border-bottom:
        1px solid rgba(120,90,50,.08) !important;

    box-shadow:
        0 6px 20px rgba(0,0,0,.06) !important;
}

header,
.bg-gradient{

    color:inherit !important;

    background:
        linear-gradient(
            180deg,
            #f8f4ec 0%,
            #f6f2ea 100%
        ) !important;
}

.visible-xs{
    display:none !important;
}

.hidden-xs{
    display:block !important;
}



/* LOGO */
.navbar-brand img{
    width:280px !important;
    height:auto !important;
    max-height:90px;
    object-fit:contain;
}


/* TITLE */

.brand-title{

    font-size:1.8rem;

    font-weight:700;

    color:var(--brown);

    letter-spacing:.3px;
}

/* NAV LINKS */

.navbar-nav{
    align-items:center;
    gap:12px;
}

.nav-link{

    color:var(--brown-dark) !important;

    font-weight:600;

    font-size:0.95rem;

    letter-spacing:0.5px;

    transition:0.3s ease;
}

.nav-link:hover{

    color:#c08a2d !important;

    transform:translateY(-1px);
}


/* SOCIAL ICONS */

.icnSocial img{

    width:24px;
    height:24px;

    transition:0.3s ease;
}

.icnSocial:hover img{

    transform:translateY(-3px) scale(1.08);
}


/* MARQUEE */

marquee{

    margin-top:14px;

    background:
        linear-gradient(
            90deg,
            #8f6230,
            #b68a46
        );

    color:#fff !important;

    padding:10px 22px;

    border-radius:999px;

    font-size:0.92rem;

    font-weight:500;
}


/* =========================================================
   HERO SECTION
========================================================= */

.bg-gradient{

    position:relative;

    overflow:hidden;

    padding-top:180px;
    padding-bottom:80px;

    background:
        radial-gradient(
            circle at top left,
            rgba(214,183,123,0.22),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #f8f4ec 0%,
            #f6f2ea 100%
        );
}


/* OM WATERMARK */

.hero-watermark{

    position:absolute;

    top:120px;
    right:5%;

    font-size:26rem;

    color:rgba(140,110,60,0.04);

    pointer-events:none;

    user-select:none;

    font-family:'Cormorant Garamond',serif;

    z-index:0;
}


/* HERO CONTAINER */

.hero-container{

    position:relative;

    z-index:2;

    width:92%;

    margin:auto;

    text-align:center;
}


/* HERO TITLE */

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:5.3rem;

    line-height:1.05;

    color:var(--brown);

    margin-bottom:34px;

    font-weight:700;
}


/* HERO TEXT */

.tagline{

    max-width:1050px;

    margin:auto;

    font-size:1.55rem;

    line-height:1.9;

    color:#5f5f5f;
}


/* =========================================================
   SECTION HEADERS
========================================================= */

.section-header{

    text-align:center;

    margin-bottom:45px;
}


/* SMALL LABEL */

.section-subtitle{

    display:inline-block;

    background:#efe3cb;

    color:#7a552b;

    padding:12px 26px;

    border-radius:999px;

    font-weight:700;

    font-size:0.92rem;

    letter-spacing:0.6px;

    margin-bottom:24px;
}


/* BIG TITLE */

.section-header h2{

    font-family:'Cormorant Garamond',serif;

    font-size:4.4rem;

    color:var(--brown);

    margin-bottom:22px;

    font-weight:700;
}


/* DESCRIPTION */

.section-header p{

    max-width:900px;

    margin:auto;

    font-size:1.15rem;

    color:#666;
}


/* =========================================================
   SECTION SPACING
========================================================= */

.homeSec2{
    padding-top:20px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px){

    .navbar-brand img{

        width:180px !important;

        height:auto !important;
    }

    .brand-title{
        font-size:1.1rem;
    }

    .hero-content h1{
        font-size:3.6rem;
    }

    .tagline{
        font-size:1.1rem;
    }

    .section-header h2{
        font-size:3rem;
    }

    .hero-watermark{
        font-size:15rem;
    }
}


@media(max-width:768px){

    .bg-gradient{

        padding-top:180px;
        padding-bottom:80px;
    }

    .hero-content h1{
        font-size:2.8rem;
    }

    .tagline{
        font-size:1rem;
        line-height:1.8;
    }

    .section-header h2{
        font-size:2.4rem;
    }

    .hero-watermark{
        font-size:10rem;
        top:160px;
    }

    marquee{
        font-size:0.82rem;
    }
}
/* ==========================================
   FIX DUPLICATE BRANDING
========================================== */

.visible-xs{
    display:none !important;
}

.hidden-xs{
    display:block !important;
}

/* ==========================================
   OVERRIDE ORIGINAL RED/PINK THEME
========================================== */

/* Hero */


/* =========================================================
   FLAVOR OF THE DAY CARDS
========================================================= */

.card.features{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.95),
        rgba(252,249,244,.95)
    ) !important;

    backdrop-filter:blur(10px);

    border:none !important;

    border-radius:32px !important;

    box-shadow:
        0 12px 35px rgba(0,0,0,.08) !important;

    padding:20px;

    min-height:420px;
     width:100%;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    overflow:hidden;

    position:relative;
}

.dashboard-header{

    margin-bottom:15px;
}

/* Gold accent line */

.card.features:before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:5px;
    height:100%;

    background:
      linear-gradient(
        180deg,
        #d7b97c,
        #b67c34
      );
      box-shadow:
    0 0 25px rgba(182,124,52,.35);
}


/* Hover */

.card.features:hover{

    transform:
        translateY(-6px);

     box-shadow:
        0 20px 45px rgba(0,0,0,.12);
}


/* Card body */

.card.features .card-body{

    padding:15px;

    display:flex;

    flex-direction:column;

    height:100%;
}


/* Title */

.card.features .card-title{

    font-family:
        'Cormorant Garamond',
        serif;

     font-size:2rem;

    font-weight:700;

    letter-spacing:.2px;
    line-height:1.2;

    color:#6d4322 !important;

    margin-bottom:20px;

    text-align:center;
}


/* Date */

.card.features strong{

    display:block;

    text-align:center;

    font-size:1.3rem;

    color:#a16a2c;

    letter-spacing:.5px;

    margin-bottom:18px;
}


/* Content */
/* Scrollable content area */

.card-scroll{

    flex:1;

    overflow-y:auto;

    padding-right:6px;
}


/* Elegant scrollbar */

.card-scroll::-webkit-scrollbar{

    width:6px;
}

.card-scroll::-webkit-scrollbar-track{

    background:#f5f1ea;

    border-radius:20px;
}

.card-scroll::-webkit-scrollbar-thumb{

    background:#c2924a;

    border-radius:20px;
}
.card.features .card-title{

    min-height:70px;

    display:flex;

    align-items:center;

    justify-content:center;
}
.card.features .card-text{

    color:#555;

    font-size:1rem;

    line-height:1.9;

    text-align:center;
}


/* Links inside cards */

.card.features a{

    color:#8b5e2d;

    font-weight:600;
}

.card.features a:hover{

    color:#b67c34;
}
.homeSec2 .container-fluid{

    max-width:1400px;

    margin:auto;
}
.homeSec2 .row{

    display:flex;

    align-items:flex-start;

    justify-content:center;
}
/* ==========================================
   SEARCH MODULES SECTION
========================================== */

.homeSec2 .search-workspace:nth-of-type(2){

    margin-top:60px;

    margin-bottom:60px;
}

/* Search Module Cards */

.homeSec2 .search-workspace:nth-of-type(2) .card.features{

    min-height:380px !important;

    padding:28px !important;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.96),
            rgba(250,247,241,.96)
        );

    border:none !important;

    border-radius:28px !important;

    box-shadow:
        0 12px 30px rgba(0,0,0,.07);

    overflow:hidden;

    position:relative;
}
.homeSec2 .search-workspace:nth-of-type(2) .card.features::after{

    content:"";

    position:absolute;

    top:-50px;
    right:-50px;

    width:140px;
    height:140px;

    border-radius:50%;

    background:

        radial-gradient(
            rgba(215,185,124,.18),
            transparent 70%
        );
}
.homeSec2 .search-workspace:nth-of-type(2) .card.features:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.12);
}

.homeSec2 .search-workspace:nth-of-type(2) .card-title{

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:1.55rem;

    line-height:1.3;

    color:#6d4322 !important;

    text-align:center;

    margin-bottom:14px;

    min-height:auto !important;
}
.homeSec2 .search-workspace:nth-of-type(2) .card-text{

    font-size:1rem;

    line-height:1.75;

    color:#5d5d5d;

    max-width:320px;

    margin:0 auto;

    text-align:center;
}
.feature-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:14px 28px;

    border-radius:999px;

    background:#e8dbc0;

    color:#6d4322 !important;

    font-weight:600;

    transition:.3s;
}

.feature-btn:hover{

    background:#d7b97c;

    transform:translateY(-2px);

    color:white !important;
}
.module-icon{

   width:64px;
    height:64px;

    font-size:1.7rem;

    margin:0 auto 20px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #f4e7c8,
            #e6cf9a
        );

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);
}
.search-modules-section,
.homeSec2 .search-workspace:nth-of-type(2){

    margin-top:60px;
}
/* =========================================================
   COMMUNITY MESSAGE
========================================================= */

.homeBotTxt{

    max-width:1200px;

     margin:60px auto;

    padding:60px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.92),
            rgba(250,247,241,.92)
        );

    border-radius:36px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;
}
.homeBotTxt:before{

    content:"ॐ";

    position:absolute;

    right:-30px;
    top:-40px;

    font-size:14rem;

    color:rgba(182,124,52,.05);

    font-family:
        'Cormorant Garamond',
        serif;

    pointer-events:none;
}
.homeBotTxt p{

    font-size:1.12rem;

    line-height:2;

    color:#5b5b5b;

    text-align:center;

    max-width:1000px;

    margin:0 auto 28px;
}
.homeBotTxt strong{

    color:#6d4322;

    font-weight:700;
}
.homeBotTxt p:not(:last-child)::after{

    content:"";

    display:block;

    width:80px;

    height:2px;

    margin:28px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d7b97c,
            transparent
        );
}
.section-header h2{

    line-height:1.1;
}

/* =========================================================
   SEARCH WORKSPACE HEADER
========================================================= */
#search_button{

    text-align:center;
}

#search_button .btn{

    width:auto !important;

    min-width:220px;

    padding:14px 40px;

    border-radius:999px;
}
.search-header{

    margin-bottom:15px;
}
.searchTab{

    margin-top:0 !important;

    margin-bottom:25px !important;
}
#search{

    padding-top:40px !important;

    padding-bottom:60px !important;
}
/* =========================================================
   SEARCH WORKSPACE TABS
========================================================= */
/* =========================================================
   SEARCH TABS
========================================================= */

.searchTab{

    display:flex !important;

    flex-direction:row !important;

    flex-wrap:wrap !important;

    justify-content:center !important;

    gap:14px;

    margin:20px auto 30px;

    padding:0;

    width:100%;

    background:none !important;

    border:none !important;
}

.searchTab a{

    flex:0 0 auto;

    width:auto !important;

    min-width:auto !important;

    max-width:none !important;

    padding:14px 22px;

    border-radius:999px;

    background:#efe3cb;

    color:#6d4322 !important;

    font-weight:600;

    text-decoration:none;

    white-space:nowrap;

    border:none !important;

    box-shadow:
        0 4px 12px rgba(0,0,0,.05);

    transition:.25s;
}
/* Hover */

.searchTab a:hover{

    background:#d7b97c;

    color:#ffffff !important;

    transform:translateY(-2px);
}

/* Active */

.searchTab a.active{

    background:
        linear-gradient(
            135deg,
            #8f6230,
            #b67c34
        );

    color:#fff !important;

    box-shadow:
        0 10px 20px rgba(182,124,52,.25);
}
/* =========================================================
   FILTER CARD
========================================================= */

.rowFilter{

    background:#ffffff;

    padding:35px;

    border-radius:24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    border:
        1px solid rgba(182,124,52,.08);

    width:100%;

    max-width:none;
}
/* =========================================================
   REMOVE OLD OR BADGES
========================================================= */

.orDiv,
.searchOR,
.orLabel{

    display:none !important;
}
/* =========================================================
   SEARCH INPUTS
========================================================= */

.rowFilter input,
.rowFilter select{

    height:54px !important;

    border-radius:14px !important;

    border:1px solid #e3d8c3 !important;

    background:#fcfbf8 !important;

    font-size:15px;

    transition:.25s;
}

.rowFilter input:focus,
.rowFilter select:focus{

    border-color:#b67c34 !important;

    box-shadow:
        0 0 0 4px rgba(182,124,52,.12) !important;
}
/* =========================================================
   SEARCH BUTTON
========================================================= */

.rowFilter .btn,
.rowFilter button{

    background:
        linear-gradient(
            135deg,
            #8f6230,
            #b67c34
        ) !important;

    color:#fff !important;

    border:none !important;

    border-radius:999px !important;

    padding:14px 36px !important;

    font-weight:600;

    min-width:180px;

    transition:.25s;
}

.rowFilter .btn:hover,
.rowFilter button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 10px 20px rgba(182,124,52,.25);
}




/* =========================================================
   SEARCH MODE NOTE
========================================================= */
.search-mode-note{

    display:block;

    width:fit-content;

    margin:0 auto 20px;

    padding:12px 24px;

    background:#f4ecdc;

    color:#8f6230;

    border-radius:999px;

    font-size:14px;

    font-weight:600;
}
.cntOR{
    display:none !important;
}
/* =========================================================
   RESULTS TABLE
========================================================= */

.tableCon{

    background:#ffffff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 12px 30px rgba(0,0,0,.06);

    border:
        1px solid rgba(182,124,52,.08);

    margin-top:25px;
}
.rowFilter .btn{

    margin-top:28px;
}
.rowFilter label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#6d4322;
}
.table thead td,
.table thead th{

    color:white !important;

    font-weight:600;

    border:none !important;

    vertical-align:middle;
}
.table tbody tr{

    transition:.2s;
}

.table tbody tr:hover{

    background:#f8f1e4;
}
.table td,
.table th{

    padding:14px 16px !important;

    vertical-align:middle;
}
.results-title{

    font-family:'Cormorant Garamond', serif;

    font-size:2rem;

    color:#6d4322;

    text-align:center;

    margin:10px 0 15px;
}
.table{

    width:100% !important;
}
.tableCon{

    padding-top:15px;
     overflow-x:auto;
     padding-top:10px !important;
}
/* =========================================================
   DATATABLES MODERNIZATION
========================================================= */
.dataTables_filter{

    margin-bottom:15px;
}

.dataTables_filter label{

    display:flex;

    align-items:center;

    gap:10px;
}
.dataTables_wrapper{

    padding:20px;
}

/* Search Box */

.dataTables_filter input{

    border-radius:12px !important;

    border:1px solid #e3d8c3 !important;

    background:#fcfbf8 !important;

    padding:8px 14px !important;

    margin-left:10px !important;
}

/* Entries Dropdown */

.dataTables_length select{

    border-radius:10px !important;

    border:1px solid #e3d8c3 !important;

    background:#fcfbf8 !important;
}

/* Pagination */

.dataTables_wrapper .paginate_button{

    border-radius:999px !important;

    margin:0 4px !important;
}

.dataTables_wrapper .paginate_button.current{

    background:
        linear-gradient(
            135deg,
            #8f6230,
            #b67c34
        ) !important;

    color:white !important;

    border:none !important;
}
.search-workspace{

    max-width:1500px;
}

/* ==========================================
   DATATABLE HEADER FIX
========================================== */

table.dataTable thead th,
table.dataTable thead td{

    background:#b67c34 !important;

    color:#ffffff !important;

    font-weight:600 !important;

    border:none !important;
}

/* Sorting icons */

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc{

    color:#ffffff !important;
}
.results-title{

      margin:0 0 10px !important;
}

.dataTables_wrapper{

    padding-top:5px !important;
}
.rowFilter input,
.rowFilter select{

    background:#faf7f1 !important;

    border:1px solid #d8c3a1 !important;

    border-radius:14px !important;

    padding:12px 14px !important;
}
.rowFilter .btn:hover{

    transform:translateY(-2px);

    box-shadow:
        0 8px 20px rgba(182,124,52,.25);
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-header{

    text-align:center;

    margin-bottom:35px;
}
#contact{

    background:#f7f3ec;

    padding:80px 0;
}

.contact-card{

       background:#fcfbf8;
    border:1px solid rgba(182,124,52,.08);
    border-radius:30px;

    padding:50px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.06);

    border:
        1px solid rgba(182,124,52,.08);

    max-width:900px;

    margin:0 auto 80px;
}
.contact-card .form-control{

    border-radius:14px;

    border:1px solid #d8c3a1;

    background:#faf7f1;

    min-height:52px;

    box-shadow:none;

    transition:.25s;
}

.contact-card .form-control:focus{

    border-color:#b67c34;

    box-shadow:
        0 0 0 4px rgba(182,124,52,.12);

    background:#fff;
}
.contact-card textarea{

    min-height:180px !important;

    resize:vertical;
}
.contact-card label{

    font-weight:600;

    color:#6d4322;

    margin-bottom:8px;
}
#btn_submit{

    background:
        linear-gradient(
            135deg,
            #9c6728,
            #c58a3d
        );

    border:none;

    border-radius:999px;

    padding:12px 34px;

    font-weight:600;

     min-width:220px;
    height:56px;
    font-size:1rem;

    letter-spacing:.5px;
    box-shadow:
        0 10px 25px rgba(182,124,52,.20);
}

#btn_submit:hover{

    transform:translateY(-2px);

    box-shadow:
        0 15px 30px rgba(182,124,52,.25);
}
#cntcap,
#cnt1,
#cnt2,
#pl{

    font-weight:600;

    color:#6d4322;
}

#cntanswer{

    text-align:center;
}

.captcha-box{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

    flex-wrap:wrap;
}
.submit-row{

    margin-top:30px;

    text-align:left;
}
.captcha-label{

    background:#ff5f72;

    color:#fff;

    padding:8px 14px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;
}

#cnt1,
#cnt2,
#pl{

    font-size:1.2rem;

    font-weight:700;

    color:#6d4322;
}

#cntanswer{

    max-width:180px;
}

.contribution-note{

    background:#faf7f1;

    border-left:4px solid #b67c34;

    padding:18px 22px;

    border-radius:14px;

    margin:25px 0;
}

.contribution-note ul{

    margin:10px 0 0 20px;
}

.contribution-note li{

    margin-bottom:6px;
}

.contact-card .form-group{

    margin-bottom:24px;
}

/* =========================================================
   CONTACT OM WATERMARK
========================================================= */

.contact-card{

    position:relative;

    overflow:hidden;
}

.contact-card::before{
    
content:"ॐ";

    position:absolute;

    right:-30px;

    bottom:-40px;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:14rem;

    line-height:1;

    color:
        rgba(182,124,52,.05);

    pointer-events:none;

    z-index:0;

}
.contact-card > *{

    position:relative;

    z-index:1;
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width:768px){

}

.hero-title,
.display-3{

    font-size:2.6rem !important;

    line-height:1.15;
}

.tagline{

    font-size:1rem !important;
}


.dashboard-card{

    margin-bottom:20px;
}
.homeSec1 .card.features{

    height:420px;
}

.searchTab{

    justify-content:flex-start !important;

    overflow-x:auto;

    flex-wrap:nowrap !important;

    padding-bottom:10px;
}

.searchTab a{

    white-space:nowrap;

    flex-shrink:0;
}

.rowFilter{

    padding:20px !important;
}

.rowFilter input,
.rowFilter select,
.contact-card input,
.contact-card textarea{

    width:100% !important;
}

.rowFilter .btn,
#btn_submit{

    width:100%;

    min-width:auto;
}

.contact-card{

    padding:25px;
}
.footer-top{
    grid-template-columns:1fr;
}
.footer-links{

    text-align:center;
}
.tableCon{

    overflow-x:auto;
}

.table{

    min-width:800px;
}

.section-header{

    margin-bottom:25px !important;
}

.homeBotTxt{

    padding:30px !important;
}

.card.features{

    height:420px;
}

.card.features .card-body{

    display:flex;

    flex-direction:column;

    height:100%;
}

.card-scroll{

    flex:1;

    overflow-y:auto;

    padding-right:8px;
}

.card-scroll::-webkit-scrollbar{

    width:6px;
}

.card-scroll::-webkit-scrollbar-thumb{

    background:#b67c34;

    border-radius:20px;
}
#aradhana-content{

    max-height:240px;

    overflow-y:auto;

    margin-top:10px;

    padding-right:6px;
}

#aradhana-content::-webkit-scrollbar{

    width:6px;
}

#aradhana-content::-webkit-scrollbar-thumb{

    background:#b67c34;

    border-radius:20px;
}

.daily-alert-card{

    text-align:left;
}

.alert-content{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.alert-content ul{

    padding-left:20px;

    margin:0;
}

.alert-content li{

    margin-bottom:8px;

    color:#555;
}

.alert-btn{

    display:inline-block;

    background:
        linear-gradient(
            135deg,
            #8f6230,
            #b67c34
        );

    color:#fff !important;

    text-decoration:none;

    padding:12px 20px;

    border-radius:999px;

    font-weight:600;

    text-align:center;

    margin-top:10px;
}

.alert-btn:hover{

    color:#fff !important;

    transform:translateY(-2px);
}

.alert-footer{

    font-size:.95rem;

    color:#666;

    margin-top:10px;
}
.daily-alert-card .alert-content{

    display:flex;
    flex-direction:column;

    height:100%;
}

.daily-alert-card .alert-footer{

    margin-top:auto;

    font-size:.95rem;
    color:#666;

    text-align:center;
}

.daily-alert-card{

    min-height:460px;
}
input[type="radio"]{

    width:auto !important;

    height:auto !important;

    min-width:unset !important;

    padding:0 !important;

    display:inline-block !important;

    margin-right:8px;
}

/* =========================================================
   FOOTER
========================================================= */

.modern-footer{

    background:
        linear-gradient(
            135deg,
            #5c3719,
            #7d4b23
        );

    color:#f5f0e6;

    margin-top:80px;

    padding:70px 0 25px;
}

.footer-top{

    display:grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap:50px;
}

.footer-brand h3{

    color:#ffffff;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:2.2rem;

    margin-bottom:15px;
}

.footer-brand p{

    color:
        rgba(255,255,255,.85);

    line-height:1.8;
}

.footer-links h5{

    color:#fff;

    margin-bottom:15px;

    font-weight:600;
}

.footer-links a{

    display:block;

    color:
        rgba(255,255,255,.85);

    text-decoration:none;

    margin-bottom:10px;

    transition:.25s;
}

.footer-links a:hover{

    color:#f3d7a1;

    transform:translateX(4px);
}

.footer-license{

    text-align:center;

    margin-top:50px;

    padding-top:30px;

    border-top:
        1px solid rgba(255,255,255,.10);
}

.footer-license p{

    margin-top:12px;

    color:
        rgba(255,255,255,.75);

    font-size:.95rem;
}

.footer-bottom{

    text-align:center;

    margin-top:25px;

    color:
        rgba(255,255,255,.75);

    font-size:.9rem;
}

.footer-separator{

    margin:0 10px;
}

@media (max-width:768px){

    .footer-top{

        grid-template-columns:1fr;

        text-align:center;

        gap:30px;
    }

    .footer-brand h3{

        font-size:1.8rem;
    }

}